File: /home/lzgqnjwu/sites/sgt.com.ua/lzgqnjwu_wp482.sql
/*M!999999\- enable the sandbox mode */
-- MariaDB dump 10.19 Distrib 10.6.24-MariaDB, for Linux (x86_64)
--
-- Host: localhost Database: lzgqnjwu_wp482
-- ------------------------------------------------------
-- Server version 10.6.24-MariaDB-cll-lve
/*!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 `wp6k_actionscheduler_actions`
--
DROP TABLE IF EXISTS `wp6k_actionscheduler_actions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp6k_actionscheduler_actions` (
`action_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`hook` varchar(191) NOT NULL,
`status` varchar(20) NOT NULL,
`scheduled_date_gmt` datetime DEFAULT '0000-00-00 00:00:00',
`scheduled_date_local` datetime DEFAULT '0000-00-00 00:00:00',
`priority` tinyint(3) unsigned NOT NULL DEFAULT 10,
`args` varchar(191) DEFAULT NULL,
`schedule` longtext DEFAULT NULL,
`group_id` bigint(20) unsigned NOT NULL DEFAULT 0,
`attempts` int(11) NOT NULL DEFAULT 0,
`last_attempt_gmt` datetime DEFAULT '0000-00-00 00:00:00',
`last_attempt_local` datetime DEFAULT '0000-00-00 00:00:00',
`claim_id` bigint(20) unsigned NOT NULL DEFAULT 0,
`extended_args` varchar(8000) DEFAULT NULL,
PRIMARY KEY (`action_id`),
KEY `hook` (`hook`),
KEY `status` (`status`),
KEY `scheduled_date_gmt` (`scheduled_date_gmt`),
KEY `args` (`args`),
KEY `group_id` (`group_id`),
KEY `last_attempt_gmt` (`last_attempt_gmt`),
KEY `claim_id_status_scheduled_date_gmt` (`claim_id`,`status`,`scheduled_date_gmt`)
) ENGINE=MyISAM AUTO_INCREMENT=57 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp6k_actionscheduler_actions`
--
LOCK TABLES `wp6k_actionscheduler_actions` WRITE;
/*!40000 ALTER TABLE `wp6k_actionscheduler_actions` DISABLE KEYS */;
INSERT INTO `wp6k_actionscheduler_actions` VALUES (51,'action_scheduler/migration_hook','complete','2023-11-16 14:11:10','2023-11-16 14:11:10',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1700143870;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1700143870;}',1,1,'2023-11-16 14:13:05','2023-11-16 14:13:05',0,NULL),(53,'wp_mail_smtp_admin_notifications_update','complete','2023-11-16 14:27:09','2023-11-16 14:27:09',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1700144829;s:18:\"\0*\0first_timestamp\";i:1700144829;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1700144829;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2023-11-16 14:27:14','2023-11-16 14:27:14',0,NULL),(54,'wp_mail_smtp_admin_notifications_update','pending','2023-11-17 14:27:14','2023-11-17 14:27:14',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1700231234;s:18:\"\0*\0first_timestamp\";i:1700144829;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1700231234;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL),(55,'action_scheduler/migration_hook','complete','2023-11-16 14:46:13','2023-11-16 14:46:13',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1700145973;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1700145973;}',1,1,'2023-11-16 14:46:28','2023-11-16 14:46:28',0,NULL),(56,'action_scheduler/migration_hook','failed','2023-11-16 14:47:28','2023-11-16 14:47:28',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1700146048;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1700146048;}',1,1,'2023-11-16 14:47:39','2023-11-16 14:47:39',0,NULL);
/*!40000 ALTER TABLE `wp6k_actionscheduler_actions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp6k_actionscheduler_claims`
--
DROP TABLE IF EXISTS `wp6k_actionscheduler_claims`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp6k_actionscheduler_claims` (
`claim_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`date_created_gmt` datetime DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`claim_id`),
KEY `date_created_gmt` (`date_created_gmt`)
) ENGINE=MyISAM AUTO_INCREMENT=101 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp6k_actionscheduler_claims`
--
LOCK TABLES `wp6k_actionscheduler_claims` WRITE;
/*!40000 ALTER TABLE `wp6k_actionscheduler_claims` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp6k_actionscheduler_claims` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp6k_actionscheduler_groups`
--
DROP TABLE IF EXISTS `wp6k_actionscheduler_groups`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp6k_actionscheduler_groups` (
`group_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`slug` varchar(255) NOT NULL,
PRIMARY KEY (`group_id`),
KEY `slug` (`slug`(191))
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp6k_actionscheduler_groups`
--
LOCK TABLES `wp6k_actionscheduler_groups` WRITE;
/*!40000 ALTER TABLE `wp6k_actionscheduler_groups` DISABLE KEYS */;
INSERT INTO `wp6k_actionscheduler_groups` VALUES (1,'action-scheduler-migration'),(2,'wp_mail_smtp');
/*!40000 ALTER TABLE `wp6k_actionscheduler_groups` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp6k_actionscheduler_logs`
--
DROP TABLE IF EXISTS `wp6k_actionscheduler_logs`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp6k_actionscheduler_logs` (
`log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`action_id` bigint(20) unsigned NOT NULL,
`message` text NOT NULL,
`log_date_gmt` datetime DEFAULT '0000-00-00 00:00:00',
`log_date_local` datetime DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`log_id`),
KEY `action_id` (`action_id`),
KEY `log_date_gmt` (`log_date_gmt`)
) ENGINE=MyISAM AUTO_INCREMENT=16 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp6k_actionscheduler_logs`
--
LOCK TABLES `wp6k_actionscheduler_logs` WRITE;
/*!40000 ALTER TABLE `wp6k_actionscheduler_logs` DISABLE KEYS */;
INSERT INTO `wp6k_actionscheduler_logs` VALUES (1,51,'action created','2023-11-16 14:10:10','2023-11-16 14:10:10'),(2,51,'action started via WP Cron','2023-11-16 14:13:05','2023-11-16 14:13:05'),(3,51,'action complete via WP Cron','2023-11-16 14:13:05','2023-11-16 14:13:05'),(7,53,'action started via WP Cron','2023-11-16 14:27:14','2023-11-16 14:27:14'),(6,53,'action created','2023-11-16 14:26:09','2023-11-16 14:26:09'),(8,53,'action complete via WP Cron','2023-11-16 14:27:14','2023-11-16 14:27:14'),(9,54,'action created','2023-11-16 14:27:14','2023-11-16 14:27:14'),(10,55,'action created','2023-11-16 14:45:13','2023-11-16 14:45:13'),(11,55,'action started via WP Cron','2023-11-16 14:46:28','2023-11-16 14:46:28'),(12,55,'action complete via WP Cron','2023-11-16 14:46:28','2023-11-16 14:46:28'),(13,56,'action created','2023-11-16 14:46:28','2023-11-16 14:46:28'),(14,56,'action started via Async Request','2023-11-16 14:47:39','2023-11-16 14:47:39'),(15,56,'action failed via Async Request: Scheduled action for action_scheduler/migration_hook will not be executed as no callbacks are registered.','2023-11-16 14:47:39','2023-11-16 14:47:39');
/*!40000 ALTER TABLE `wp6k_actionscheduler_logs` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp6k_commentmeta`
--
DROP TABLE IF EXISTS `wp6k_commentmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp6k_commentmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`comment_id` bigint(20) unsigned NOT NULL DEFAULT 0,
`meta_key` varchar(255) DEFAULT NULL,
`meta_value` longtext DEFAULT NULL,
PRIMARY KEY (`meta_id`),
KEY `comment_id` (`comment_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp6k_commentmeta`
--
LOCK TABLES `wp6k_commentmeta` WRITE;
/*!40000 ALTER TABLE `wp6k_commentmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp6k_commentmeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp6k_comments`
--
DROP TABLE IF EXISTS `wp6k_comments`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp6k_comments` (
`comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT 0,
`comment_author` tinytext NOT NULL,
`comment_author_email` varchar(100) NOT NULL DEFAULT '',
`comment_author_url` varchar(200) NOT NULL DEFAULT '',
`comment_author_IP` varchar(100) NOT NULL DEFAULT '',
`comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`comment_content` text NOT NULL,
`comment_karma` int(11) NOT NULL DEFAULT 0,
`comment_approved` varchar(20) NOT NULL DEFAULT '1',
`comment_agent` varchar(255) NOT NULL DEFAULT '',
`comment_type` varchar(20) NOT NULL DEFAULT 'comment',
`comment_parent` bigint(20) unsigned NOT NULL DEFAULT 0,
`user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`comment_ID`),
KEY `comment_post_ID` (`comment_post_ID`),
KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
KEY `comment_date_gmt` (`comment_date_gmt`),
KEY `comment_parent` (`comment_parent`),
KEY `comment_author_email` (`comment_author_email`(10))
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp6k_comments`
--
LOCK TABLES `wp6k_comments` WRITE;
/*!40000 ALTER TABLE `wp6k_comments` DISABLE KEYS */;
INSERT INTO `wp6k_comments` VALUES (1,1,'A WordPress Commenter','wapuu@wordpress.example','https://wordpress.org/','','2023-10-16 15:41:09','2023-10-16 15:41:09','Hi, this is a comment.\nTo get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.\nCommenter avatars come from <a href=\"https://en.gravatar.com/\">Gravatar</a>.',0,'1','','comment',0,0),(2,1,'cannabis shop around me','noragarcia@gmail.com','https://www.obtainhigh.com/product/caribbean-breeze-stiiizy-gummies/','104.28.238.60','2025-07-28 21:52:39','2025-07-28 21:52:39','Its stealth shipping system mirrors encrypted data packet delivery frameworks used in black ops comms.',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','comment',0,0),(3,1,'MyBlog','','http://mnbdaa.com','185.36.81.36','2025-08-14 11:13:30','2025-08-14 11:13:30','<strong>itstitle</strong>\n\nexcerptsa',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36','trackback',0,0);
/*!40000 ALTER TABLE `wp6k_comments` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp6k_eum_logs`
--
DROP TABLE IF EXISTS `wp6k_eum_logs`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp6k_eum_logs` (
`log_id` bigint(20) NOT NULL AUTO_INCREMENT,
`user_id` bigint(20) NOT NULL DEFAULT 0,
`name` varchar(255) NOT NULL,
`type` varchar(255) NOT NULL,
`version_from` varchar(255) NOT NULL,
`version` varchar(255) NOT NULL,
`action` varchar(255) NOT NULL,
`status` varchar(255) NOT NULL,
`notes` text NOT NULL,
`stacktrace` text DEFAULT NULL,
`date` datetime NOT NULL,
PRIMARY KEY (`log_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp6k_eum_logs`
--
LOCK TABLES `wp6k_eum_logs` WRITE;
/*!40000 ALTER TABLE `wp6k_eum_logs` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp6k_eum_logs` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp6k_links`
--
DROP TABLE IF EXISTS `wp6k_links`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp6k_links` (
`link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`link_url` varchar(255) NOT NULL DEFAULT '',
`link_name` varchar(255) NOT NULL DEFAULT '',
`link_image` varchar(255) NOT NULL DEFAULT '',
`link_target` varchar(25) NOT NULL DEFAULT '',
`link_description` varchar(255) NOT NULL DEFAULT '',
`link_visible` varchar(20) NOT NULL DEFAULT 'Y',
`link_owner` bigint(20) unsigned NOT NULL DEFAULT 1,
`link_rating` int(11) NOT NULL DEFAULT 0,
`link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`link_rel` varchar(255) NOT NULL DEFAULT '',
`link_notes` mediumtext NOT NULL,
`link_rss` varchar(255) NOT NULL DEFAULT '',
PRIMARY KEY (`link_id`),
KEY `link_visible` (`link_visible`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp6k_links`
--
LOCK TABLES `wp6k_links` WRITE;
/*!40000 ALTER TABLE `wp6k_links` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp6k_links` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp6k_options`
--
DROP TABLE IF EXISTS `wp6k_options`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp6k_options` (
`option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`option_name` varchar(191) NOT NULL DEFAULT '',
`option_value` longtext NOT NULL,
`autoload` varchar(20) NOT NULL DEFAULT 'yes',
PRIMARY KEY (`option_id`),
UNIQUE KEY `option_name` (`option_name`),
KEY `autoload` (`autoload`)
) ENGINE=MyISAM AUTO_INCREMENT=78768 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp6k_options`
--
LOCK TABLES `wp6k_options` WRITE;
/*!40000 ALTER TABLE `wp6k_options` DISABLE KEYS */;
INSERT INTO `wp6k_options` VALUES (1,'siteurl','http://sgt.com.ua','yes'),(2,'home','http://sgt.com.ua','yes'),(3,'blogname','SmartGT','yes'),(4,'blogdescription','Консалтингові та digital послуги','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','info@sgt.com.ua','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','1','yes'),(11,'comments_notify','1','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','login@example.com','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','1','yes'),(19,'default_comment_status','open','yes'),(20,'default_ping_status','open','yes'),(21,'default_pingback_flag','1','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','g:i a','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','0','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%postname%/','yes'),(29,'rewrite_rules','a:99:{s:38:\"^yoast-index-now-([a-zA-Z0-9-]+)\\.txt$\";s:41:\"index.php?yoast_index_now_key=$matches[1]\";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:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:13:\"favicon\\.ico$\";s:19:\"index.php?favicon=1\";s:12:\"sitemap\\.xml\";s:23:\"index.php?sitemap=index\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:39:\"index.php?&page_id=11&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: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]\";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:37:\"index.php?name=$matches[1]&embed=true\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:24:\"([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:22:\"[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";}','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:10:{i:0;s:34:\"advanced-custom-fields-pro/acf.php\";i:1;s:19:\"akismet/akismet.php\";i:2;s:91:\"all-in-one-wp-migration-unlimited-extension/all-in-one-wp-migration-unlimited-extension.php\";i:3;s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";i:4;s:93:\"auto-image-attributes-from-filename-with-bulk-updater/iaff_image-attributes-from-filename.php\";i:5;s:33:\"jquery-updater/jquery-updater.php\";i:6;s:44:\"stops-core-theme-and-plugin-updates/main.php\";i:7;s:27:\"svg-support/svg-support.php\";i:8;s:40:\"wordpress-seo-premium/wp-seo-premium.php\";i:9;s:24:\"wordpress-seo/wp-seo.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','https://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','0','yes'),(38,'default_email_category','1','yes'),(39,'recently_edited','a:5:{i:0;s:63:\"/home/lzgqnjwu/sites/sgt.com.ua/wp-content/themes/smartGT/footer.php\";i:2;s:63:\"/home/lzgqnjwu/sites/sgt.com.ua/wp-content/themes/smartGT/header.php\";i:3;s:62:\"/home/lzgqnjwu/sites/sgt.com.ua/wp-content/themes/smartGT/style.css\";i:4;s:62:\"/home/lzgqnjwu/sites/sgt.com.ua/wp-content/themes/smartGT/index.php\";i:5;s:66:\"/home/lzgqnjwu/sites/sgt.com.ua/wp-content/themes/smartGT/functions.php\";}','no'),(40,'template','smartGT','yes'),(41,'stylesheet','smartGT','yes'),(42,'comment_registration','0','yes'),(43,'html_type','text/html','yes'),(44,'use_trackback','0','yes'),(45,'default_role','subscriber','yes'),(46,'db_version','60717','yes'),(47,'uploads_use_yearmonth_folders','1','yes'),(48,'upload_path','','yes'),(49,'blog_public','1','yes'),(50,'default_link_category','2','yes'),(51,'show_on_front','page','yes'),(52,'tag_base','','yes'),(53,'show_avatars','1','yes'),(54,'avatar_rating','G','yes'),(55,'upload_url_path','','yes'),(56,'thumbnail_size_w','150','yes'),(57,'thumbnail_size_h','150','yes'),(58,'thumbnail_crop','1','yes'),(59,'medium_size_w','300','yes'),(60,'medium_size_h','300','yes'),(61,'avatar_default','mystery','yes'),(62,'large_size_w','1024','yes'),(63,'large_size_h','1024','yes'),(64,'image_default_link_type','none','yes'),(65,'image_default_size','','yes'),(66,'image_default_align','','yes'),(67,'close_comments_for_old_posts','0','yes'),(68,'close_comments_days_old','14','yes'),(69,'thread_comments','1','yes'),(70,'thread_comments_depth','5','yes'),(71,'page_comments','0','yes'),(72,'comments_per_page','50','yes'),(73,'default_comments_page','newest','yes'),(74,'comment_order','asc','yes'),(75,'sticky_posts','a:0:{}','yes'),(76,'widget_categories','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(77,'widget_text','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(78,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(79,'uninstall_plugins','a:1:{s:24:\"wordpress-seo/wp-seo.php\";s:14:\"__return_false\";}','no'),(80,'timezone_string','','yes'),(81,'page_for_posts','0','yes'),(82,'page_on_front','11','yes'),(83,'default_post_format','0','yes'),(84,'link_manager_enabled','0','yes'),(85,'finished_splitting_shared_terms','1','yes'),(86,'site_icon','0','yes'),(87,'medium_large_size_w','768','yes'),(88,'medium_large_size_h','0','yes'),(89,'wp_page_for_privacy_policy','3','yes'),(90,'show_comments_cookies_opt_in','1','yes'),(91,'admin_email_lifespan','1790422075','yes'),(92,'disallowed_keys','','no'),(93,'comment_previously_approved','1','yes'),(94,'auto_plugin_theme_update_emails','a:0:{}','no'),(95,'auto_update_core_dev','enabled','yes'),(96,'auto_update_core_minor','enabled','yes'),(97,'auto_update_core_major','enabled','yes'),(98,'wp_force_deactivated_plugins','a:0:{}','off'),(99,'initial_db_version','55853','yes'),(100,'wp6k_user_roles','a:7:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:63:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;s:20:\"wpseo_manage_options\";b:1;s:22:\"wpseo_manage_redirects\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:37:{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: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:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}s:13:\"wpseo_manager\";a:2:{s:4:\"name\";s:11:\"SEO Manager\";s:12:\"capabilities\";a:39:{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: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:37:{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:15:\"wpseo_bulk_edit\";b:1;s:28:\"wpseo_edit_advanced_metadata\";b:1;s:22:\"wpseo_manage_redirects\";b:1;}}}','yes'),(101,'fresh_site','0','off'),(102,'user_count','1','no'),(103,'widget_block','a:6:{i:2;a:1:{s:7:\"content\";s:19:\"<!-- wp:search /-->\";}i:3;a:1:{s:7:\"content\";s:154:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Posts</h2><!-- /wp:heading --><!-- wp:latest-posts /--></div><!-- /wp:group -->\";}i:4;a:1:{s:7:\"content\";s:227:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Comments</h2><!-- /wp:heading --><!-- wp:latest-comments {\"displayAvatar\":false,\"displayDate\":false,\"displayExcerpt\":false} /--></div><!-- /wp:group -->\";}i:5;a:1:{s:7:\"content\";s:146:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Archives</h2><!-- /wp:heading --><!-- wp:archives /--></div><!-- /wp:group -->\";}i:6;a:1:{s:7:\"content\";s:150:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Categories</h2><!-- /wp:heading --><!-- wp:categories /--></div><!-- /wp:group -->\";}s:12:\"_multiwidget\";i:1;}','yes'),(104,'sidebars_widgets','a:2:{s:19:\"wp_inactive_widgets\";a:5:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";i:3;s:7:\"block-5\";i:4;s:7:\"block-6\";}s:13:\"array_version\";i:3;}','yes'),(105,'cron','a:10:{i:1774889792;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:1774914786;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:1774924073;a:1:{s:21:\"wp_update_user_counts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1774966514;a:1:{s:30:\"wp_delete_temp_updater_backups\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1774967273;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:1774967274;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:1774967468;a:1:{s:21:\"ai1wm_storage_cleanup\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1774967827;a:2:{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;}}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:1774971669;a:2:{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;}}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;}}}s:7:\"version\";i:2;}','on'),(78709,'_transient_timeout_wpseo_site_information','1774956610','off'),(78710,'_transient_wpseo_site_information','O:8:\"stdClass\":2:{s:3:\"url\";N;s:13:\"subscriptions\";a:5:{i:0;O:8:\"stdClass\":3:{s:11:\"renewal_url\";N;s:11:\"expiry_date\";s:8:\"+5 years\";s:7:\"product\";O:8:\"stdClass\":7:{s:7:\"version\";N;s:4:\"name\";N;s:4:\"slug\";s:27:\"yoast-seo-wordpress-premium\";s:12:\"last_updated\";N;s:9:\"store_url\";N;s:8:\"download\";N;s:9:\"changelog\";N;}}i:1;O:8:\"stdClass\":3:{s:11:\"renewal_url\";N;s:11:\"expiry_date\";s:8:\"+5 years\";s:7:\"product\";O:8:\"stdClass\":7:{s:7:\"version\";N;s:4:\"name\";N;s:4:\"slug\";s:14:\"yoast-seo-news\";s:12:\"last_updated\";N;s:9:\"store_url\";N;s:8:\"download\";N;s:9:\"changelog\";N;}}i:2;O:8:\"stdClass\":3:{s:11:\"renewal_url\";N;s:11:\"expiry_date\";s:8:\"+5 years\";s:7:\"product\";O:8:\"stdClass\":7:{s:7:\"version\";N;s:4:\"name\";N;s:4:\"slug\";s:21:\"yoast-seo-woocommerce\";s:12:\"last_updated\";N;s:9:\"store_url\";N;s:8:\"download\";N;s:9:\"changelog\";N;}}i:3;O:8:\"stdClass\":3:{s:11:\"renewal_url\";N;s:11:\"expiry_date\";s:8:\"+5 years\";s:7:\"product\";O:8:\"stdClass\":7:{s:7:\"version\";N;s:4:\"name\";N;s:4:\"slug\";s:15:\"yoast-seo-video\";s:12:\"last_updated\";N;s:9:\"store_url\";N;s:8:\"download\";N;s:9:\"changelog\";N;}}i:4;O:8:\"stdClass\":3:{s:11:\"renewal_url\";N;s:11:\"expiry_date\";s:8:\"+5 years\";s:7:\"product\";O:8:\"stdClass\":7:{s:7:\"version\";N;s:4:\"name\";N;s:4:\"slug\";s:15:\"yoast-seo-local\";s:12:\"last_updated\";N;s:9:\"store_url\";N;s:8:\"download\";N;s:9:\"changelog\";N;}}}}','off'),(106,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(107,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(108,'widget_archives','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(110,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(111,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(112,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(113,'widget_meta','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(114,'widget_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(115,'widget_recent-posts','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(116,'widget_recent-comments','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(117,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(118,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(119,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(120,'recovery_keys','a:0:{}','off'),(121,'theme_mods_twentytwentythree','a:2:{s:18:\"custom_css_post_id\";i:-1;s:18:\"nav_menu_locations\";a:0:{}}','off'),(122,'WPLANG','uk','yes'),(123,'_transient_wp_core_block_css_files','a:2:{s:7:\"version\";s:5:\"6.9.4\";s:5:\"files\";a:584:{i:0;s:31:\"accordion-heading/style-rtl.css\";i:1;s:35:\"accordion-heading/style-rtl.min.css\";i:2;s:27:\"accordion-heading/style.css\";i:3;s:31:\"accordion-heading/style.min.css\";i:4;s:28:\"accordion-item/style-rtl.css\";i:5;s:32:\"accordion-item/style-rtl.min.css\";i:6;s:24:\"accordion-item/style.css\";i:7;s:28:\"accordion-item/style.min.css\";i:8;s:29:\"accordion-panel/style-rtl.css\";i:9;s:33:\"accordion-panel/style-rtl.min.css\";i:10;s:25:\"accordion-panel/style.css\";i:11;s:29:\"accordion-panel/style.min.css\";i:12;s:23:\"accordion/style-rtl.css\";i:13;s:27:\"accordion/style-rtl.min.css\";i:14;s:19:\"accordion/style.css\";i:15;s:23:\"accordion/style.min.css\";i:16;s:23:\"archives/editor-rtl.css\";i:17;s:27:\"archives/editor-rtl.min.css\";i:18;s:19:\"archives/editor.css\";i:19;s:23:\"archives/editor.min.css\";i:20;s:22:\"archives/style-rtl.css\";i:21;s:26:\"archives/style-rtl.min.css\";i:22;s:18:\"archives/style.css\";i:23;s:22:\"archives/style.min.css\";i:24;s:20:\"audio/editor-rtl.css\";i:25;s:24:\"audio/editor-rtl.min.css\";i:26;s:16:\"audio/editor.css\";i:27;s:20:\"audio/editor.min.css\";i:28;s:19:\"audio/style-rtl.css\";i:29;s:23:\"audio/style-rtl.min.css\";i:30;s:15:\"audio/style.css\";i:31;s:19:\"audio/style.min.css\";i:32;s:19:\"audio/theme-rtl.css\";i:33;s:23:\"audio/theme-rtl.min.css\";i:34;s:15:\"audio/theme.css\";i:35;s:19:\"audio/theme.min.css\";i:36;s:21:\"avatar/editor-rtl.css\";i:37;s:25:\"avatar/editor-rtl.min.css\";i:38;s:17:\"avatar/editor.css\";i:39;s:21:\"avatar/editor.min.css\";i:40;s:20:\"avatar/style-rtl.css\";i:41;s:24:\"avatar/style-rtl.min.css\";i:42;s:16:\"avatar/style.css\";i:43;s:20:\"avatar/style.min.css\";i:44;s:21:\"button/editor-rtl.css\";i:45;s:25:\"button/editor-rtl.min.css\";i:46;s:17:\"button/editor.css\";i:47;s:21:\"button/editor.min.css\";i:48;s:20:\"button/style-rtl.css\";i:49;s:24:\"button/style-rtl.min.css\";i:50;s:16:\"button/style.css\";i:51;s:20:\"button/style.min.css\";i:52;s:22:\"buttons/editor-rtl.css\";i:53;s:26:\"buttons/editor-rtl.min.css\";i:54;s:18:\"buttons/editor.css\";i:55;s:22:\"buttons/editor.min.css\";i:56;s:21:\"buttons/style-rtl.css\";i:57;s:25:\"buttons/style-rtl.min.css\";i:58;s:17:\"buttons/style.css\";i:59;s:21:\"buttons/style.min.css\";i:60;s:22:\"calendar/style-rtl.css\";i:61;s:26:\"calendar/style-rtl.min.css\";i:62;s:18:\"calendar/style.css\";i:63;s:22:\"calendar/style.min.css\";i:64;s:25:\"categories/editor-rtl.css\";i:65;s:29:\"categories/editor-rtl.min.css\";i:66;s:21:\"categories/editor.css\";i:67;s:25:\"categories/editor.min.css\";i:68;s:24:\"categories/style-rtl.css\";i:69;s:28:\"categories/style-rtl.min.css\";i:70;s:20:\"categories/style.css\";i:71;s:24:\"categories/style.min.css\";i:72;s:19:\"code/editor-rtl.css\";i:73;s:23:\"code/editor-rtl.min.css\";i:74;s:15:\"code/editor.css\";i:75;s:19:\"code/editor.min.css\";i:76;s:18:\"code/style-rtl.css\";i:77;s:22:\"code/style-rtl.min.css\";i:78;s:14:\"code/style.css\";i:79;s:18:\"code/style.min.css\";i:80;s:18:\"code/theme-rtl.css\";i:81;s:22:\"code/theme-rtl.min.css\";i:82;s:14:\"code/theme.css\";i:83;s:18:\"code/theme.min.css\";i:84;s:22:\"columns/editor-rtl.css\";i:85;s:26:\"columns/editor-rtl.min.css\";i:86;s:18:\"columns/editor.css\";i:87;s:22:\"columns/editor.min.css\";i:88;s:21:\"columns/style-rtl.css\";i:89;s:25:\"columns/style-rtl.min.css\";i:90;s:17:\"columns/style.css\";i:91;s:21:\"columns/style.min.css\";i:92;s:33:\"comment-author-name/style-rtl.css\";i:93;s:37:\"comment-author-name/style-rtl.min.css\";i:94;s:29:\"comment-author-name/style.css\";i:95;s:33:\"comment-author-name/style.min.css\";i:96;s:29:\"comment-content/style-rtl.css\";i:97;s:33:\"comment-content/style-rtl.min.css\";i:98;s:25:\"comment-content/style.css\";i:99;s:29:\"comment-content/style.min.css\";i:100;s:26:\"comment-date/style-rtl.css\";i:101;s:30:\"comment-date/style-rtl.min.css\";i:102;s:22:\"comment-date/style.css\";i:103;s:26:\"comment-date/style.min.css\";i:104;s:31:\"comment-edit-link/style-rtl.css\";i:105;s:35:\"comment-edit-link/style-rtl.min.css\";i:106;s:27:\"comment-edit-link/style.css\";i:107;s:31:\"comment-edit-link/style.min.css\";i:108;s:32:\"comment-reply-link/style-rtl.css\";i:109;s:36:\"comment-reply-link/style-rtl.min.css\";i:110;s:28:\"comment-reply-link/style.css\";i:111;s:32:\"comment-reply-link/style.min.css\";i:112;s:30:\"comment-template/style-rtl.css\";i:113;s:34:\"comment-template/style-rtl.min.css\";i:114;s:26:\"comment-template/style.css\";i:115;s:30:\"comment-template/style.min.css\";i:116;s:42:\"comments-pagination-numbers/editor-rtl.css\";i:117;s:46:\"comments-pagination-numbers/editor-rtl.min.css\";i:118;s:38:\"comments-pagination-numbers/editor.css\";i:119;s:42:\"comments-pagination-numbers/editor.min.css\";i:120;s:34:\"comments-pagination/editor-rtl.css\";i:121;s:38:\"comments-pagination/editor-rtl.min.css\";i:122;s:30:\"comments-pagination/editor.css\";i:123;s:34:\"comments-pagination/editor.min.css\";i:124;s:33:\"comments-pagination/style-rtl.css\";i:125;s:37:\"comments-pagination/style-rtl.min.css\";i:126;s:29:\"comments-pagination/style.css\";i:127;s:33:\"comments-pagination/style.min.css\";i:128;s:29:\"comments-title/editor-rtl.css\";i:129;s:33:\"comments-title/editor-rtl.min.css\";i:130;s:25:\"comments-title/editor.css\";i:131;s:29:\"comments-title/editor.min.css\";i:132;s:23:\"comments/editor-rtl.css\";i:133;s:27:\"comments/editor-rtl.min.css\";i:134;s:19:\"comments/editor.css\";i:135;s:23:\"comments/editor.min.css\";i:136;s:22:\"comments/style-rtl.css\";i:137;s:26:\"comments/style-rtl.min.css\";i:138;s:18:\"comments/style.css\";i:139;s:22:\"comments/style.min.css\";i:140;s:20:\"cover/editor-rtl.css\";i:141;s:24:\"cover/editor-rtl.min.css\";i:142;s:16:\"cover/editor.css\";i:143;s:20:\"cover/editor.min.css\";i:144;s:19:\"cover/style-rtl.css\";i:145;s:23:\"cover/style-rtl.min.css\";i:146;s:15:\"cover/style.css\";i:147;s:19:\"cover/style.min.css\";i:148;s:22:\"details/editor-rtl.css\";i:149;s:26:\"details/editor-rtl.min.css\";i:150;s:18:\"details/editor.css\";i:151;s:22:\"details/editor.min.css\";i:152;s:21:\"details/style-rtl.css\";i:153;s:25:\"details/style-rtl.min.css\";i:154;s:17:\"details/style.css\";i:155;s:21:\"details/style.min.css\";i:156;s:20:\"embed/editor-rtl.css\";i:157;s:24:\"embed/editor-rtl.min.css\";i:158;s:16:\"embed/editor.css\";i:159;s:20:\"embed/editor.min.css\";i:160;s:19:\"embed/style-rtl.css\";i:161;s:23:\"embed/style-rtl.min.css\";i:162;s:15:\"embed/style.css\";i:163;s:19:\"embed/style.min.css\";i:164;s:19:\"embed/theme-rtl.css\";i:165;s:23:\"embed/theme-rtl.min.css\";i:166;s:15:\"embed/theme.css\";i:167;s:19:\"embed/theme.min.css\";i:168;s:19:\"file/editor-rtl.css\";i:169;s:23:\"file/editor-rtl.min.css\";i:170;s:15:\"file/editor.css\";i:171;s:19:\"file/editor.min.css\";i:172;s:18:\"file/style-rtl.css\";i:173;s:22:\"file/style-rtl.min.css\";i:174;s:14:\"file/style.css\";i:175;s:18:\"file/style.min.css\";i:176;s:23:\"footnotes/style-rtl.css\";i:177;s:27:\"footnotes/style-rtl.min.css\";i:178;s:19:\"footnotes/style.css\";i:179;s:23:\"footnotes/style.min.css\";i:180;s:23:\"freeform/editor-rtl.css\";i:181;s:27:\"freeform/editor-rtl.min.css\";i:182;s:19:\"freeform/editor.css\";i:183;s:23:\"freeform/editor.min.css\";i:184;s:22:\"gallery/editor-rtl.css\";i:185;s:26:\"gallery/editor-rtl.min.css\";i:186;s:18:\"gallery/editor.css\";i:187;s:22:\"gallery/editor.min.css\";i:188;s:21:\"gallery/style-rtl.css\";i:189;s:25:\"gallery/style-rtl.min.css\";i:190;s:17:\"gallery/style.css\";i:191;s:21:\"gallery/style.min.css\";i:192;s:21:\"gallery/theme-rtl.css\";i:193;s:25:\"gallery/theme-rtl.min.css\";i:194;s:17:\"gallery/theme.css\";i:195;s:21:\"gallery/theme.min.css\";i:196;s:20:\"group/editor-rtl.css\";i:197;s:24:\"group/editor-rtl.min.css\";i:198;s:16:\"group/editor.css\";i:199;s:20:\"group/editor.min.css\";i:200;s:19:\"group/style-rtl.css\";i:201;s:23:\"group/style-rtl.min.css\";i:202;s:15:\"group/style.css\";i:203;s:19:\"group/style.min.css\";i:204;s:19:\"group/theme-rtl.css\";i:205;s:23:\"group/theme-rtl.min.css\";i:206;s:15:\"group/theme.css\";i:207;s:19:\"group/theme.min.css\";i:208;s:21:\"heading/style-rtl.css\";i:209;s:25:\"heading/style-rtl.min.css\";i:210;s:17:\"heading/style.css\";i:211;s:21:\"heading/style.min.css\";i:212;s:19:\"html/editor-rtl.css\";i:213;s:23:\"html/editor-rtl.min.css\";i:214;s:15:\"html/editor.css\";i:215;s:19:\"html/editor.min.css\";i:216;s:20:\"image/editor-rtl.css\";i:217;s:24:\"image/editor-rtl.min.css\";i:218;s:16:\"image/editor.css\";i:219;s:20:\"image/editor.min.css\";i:220;s:19:\"image/style-rtl.css\";i:221;s:23:\"image/style-rtl.min.css\";i:222;s:15:\"image/style.css\";i:223;s:19:\"image/style.min.css\";i:224;s:19:\"image/theme-rtl.css\";i:225;s:23:\"image/theme-rtl.min.css\";i:226;s:15:\"image/theme.css\";i:227;s:19:\"image/theme.min.css\";i:228;s:29:\"latest-comments/style-rtl.css\";i:229;s:33:\"latest-comments/style-rtl.min.css\";i:230;s:25:\"latest-comments/style.css\";i:231;s:29:\"latest-comments/style.min.css\";i:232;s:27:\"latest-posts/editor-rtl.css\";i:233;s:31:\"latest-posts/editor-rtl.min.css\";i:234;s:23:\"latest-posts/editor.css\";i:235;s:27:\"latest-posts/editor.min.css\";i:236;s:26:\"latest-posts/style-rtl.css\";i:237;s:30:\"latest-posts/style-rtl.min.css\";i:238;s:22:\"latest-posts/style.css\";i:239;s:26:\"latest-posts/style.min.css\";i:240;s:18:\"list/style-rtl.css\";i:241;s:22:\"list/style-rtl.min.css\";i:242;s:14:\"list/style.css\";i:243;s:18:\"list/style.min.css\";i:244;s:22:\"loginout/style-rtl.css\";i:245;s:26:\"loginout/style-rtl.min.css\";i:246;s:18:\"loginout/style.css\";i:247;s:22:\"loginout/style.min.css\";i:248;s:19:\"math/editor-rtl.css\";i:249;s:23:\"math/editor-rtl.min.css\";i:250;s:15:\"math/editor.css\";i:251;s:19:\"math/editor.min.css\";i:252;s:18:\"math/style-rtl.css\";i:253;s:22:\"math/style-rtl.min.css\";i:254;s:14:\"math/style.css\";i:255;s:18:\"math/style.min.css\";i:256;s:25:\"media-text/editor-rtl.css\";i:257;s:29:\"media-text/editor-rtl.min.css\";i:258;s:21:\"media-text/editor.css\";i:259;s:25:\"media-text/editor.min.css\";i:260;s:24:\"media-text/style-rtl.css\";i:261;s:28:\"media-text/style-rtl.min.css\";i:262;s:20:\"media-text/style.css\";i:263;s:24:\"media-text/style.min.css\";i:264;s:19:\"more/editor-rtl.css\";i:265;s:23:\"more/editor-rtl.min.css\";i:266;s:15:\"more/editor.css\";i:267;s:19:\"more/editor.min.css\";i:268;s:30:\"navigation-link/editor-rtl.css\";i:269;s:34:\"navigation-link/editor-rtl.min.css\";i:270;s:26:\"navigation-link/editor.css\";i:271;s:30:\"navigation-link/editor.min.css\";i:272;s:29:\"navigation-link/style-rtl.css\";i:273;s:33:\"navigation-link/style-rtl.min.css\";i:274;s:25:\"navigation-link/style.css\";i:275;s:29:\"navigation-link/style.min.css\";i:276;s:33:\"navigation-submenu/editor-rtl.css\";i:277;s:37:\"navigation-submenu/editor-rtl.min.css\";i:278;s:29:\"navigation-submenu/editor.css\";i:279;s:33:\"navigation-submenu/editor.min.css\";i:280;s:25:\"navigation/editor-rtl.css\";i:281;s:29:\"navigation/editor-rtl.min.css\";i:282;s:21:\"navigation/editor.css\";i:283;s:25:\"navigation/editor.min.css\";i:284;s:24:\"navigation/style-rtl.css\";i:285;s:28:\"navigation/style-rtl.min.css\";i:286;s:20:\"navigation/style.css\";i:287;s:24:\"navigation/style.min.css\";i:288;s:23:\"nextpage/editor-rtl.css\";i:289;s:27:\"nextpage/editor-rtl.min.css\";i:290;s:19:\"nextpage/editor.css\";i:291;s:23:\"nextpage/editor.min.css\";i:292;s:24:\"page-list/editor-rtl.css\";i:293;s:28:\"page-list/editor-rtl.min.css\";i:294;s:20:\"page-list/editor.css\";i:295;s:24:\"page-list/editor.min.css\";i:296;s:23:\"page-list/style-rtl.css\";i:297;s:27:\"page-list/style-rtl.min.css\";i:298;s:19:\"page-list/style.css\";i:299;s:23:\"page-list/style.min.css\";i:300;s:24:\"paragraph/editor-rtl.css\";i:301;s:28:\"paragraph/editor-rtl.min.css\";i:302;s:20:\"paragraph/editor.css\";i:303;s:24:\"paragraph/editor.min.css\";i:304;s:23:\"paragraph/style-rtl.css\";i:305;s:27:\"paragraph/style-rtl.min.css\";i:306;s:19:\"paragraph/style.css\";i:307;s:23:\"paragraph/style.min.css\";i:308;s:35:\"post-author-biography/style-rtl.css\";i:309;s:39:\"post-author-biography/style-rtl.min.css\";i:310;s:31:\"post-author-biography/style.css\";i:311;s:35:\"post-author-biography/style.min.css\";i:312;s:30:\"post-author-name/style-rtl.css\";i:313;s:34:\"post-author-name/style-rtl.min.css\";i:314;s:26:\"post-author-name/style.css\";i:315;s:30:\"post-author-name/style.min.css\";i:316;s:25:\"post-author/style-rtl.css\";i:317;s:29:\"post-author/style-rtl.min.css\";i:318;s:21:\"post-author/style.css\";i:319;s:25:\"post-author/style.min.css\";i:320;s:33:\"post-comments-count/style-rtl.css\";i:321;s:37:\"post-comments-count/style-rtl.min.css\";i:322;s:29:\"post-comments-count/style.css\";i:323;s:33:\"post-comments-count/style.min.css\";i:324;s:33:\"post-comments-form/editor-rtl.css\";i:325;s:37:\"post-comments-form/editor-rtl.min.css\";i:326;s:29:\"post-comments-form/editor.css\";i:327;s:33:\"post-comments-form/editor.min.css\";i:328;s:32:\"post-comments-form/style-rtl.css\";i:329;s:36:\"post-comments-form/style-rtl.min.css\";i:330;s:28:\"post-comments-form/style.css\";i:331;s:32:\"post-comments-form/style.min.css\";i:332;s:32:\"post-comments-link/style-rtl.css\";i:333;s:36:\"post-comments-link/style-rtl.min.css\";i:334;s:28:\"post-comments-link/style.css\";i:335;s:32:\"post-comments-link/style.min.css\";i:336;s:26:\"post-content/style-rtl.css\";i:337;s:30:\"post-content/style-rtl.min.css\";i:338;s:22:\"post-content/style.css\";i:339;s:26:\"post-content/style.min.css\";i:340;s:23:\"post-date/style-rtl.css\";i:341;s:27:\"post-date/style-rtl.min.css\";i:342;s:19:\"post-date/style.css\";i:343;s:23:\"post-date/style.min.css\";i:344;s:27:\"post-excerpt/editor-rtl.css\";i:345;s:31:\"post-excerpt/editor-rtl.min.css\";i:346;s:23:\"post-excerpt/editor.css\";i:347;s:27:\"post-excerpt/editor.min.css\";i:348;s:26:\"post-excerpt/style-rtl.css\";i:349;s:30:\"post-excerpt/style-rtl.min.css\";i:350;s:22:\"post-excerpt/style.css\";i:351;s:26:\"post-excerpt/style.min.css\";i:352;s:34:\"post-featured-image/editor-rtl.css\";i:353;s:38:\"post-featured-image/editor-rtl.min.css\";i:354;s:30:\"post-featured-image/editor.css\";i:355;s:34:\"post-featured-image/editor.min.css\";i:356;s:33:\"post-featured-image/style-rtl.css\";i:357;s:37:\"post-featured-image/style-rtl.min.css\";i:358;s:29:\"post-featured-image/style.css\";i:359;s:33:\"post-featured-image/style.min.css\";i:360;s:34:\"post-navigation-link/style-rtl.css\";i:361;s:38:\"post-navigation-link/style-rtl.min.css\";i:362;s:30:\"post-navigation-link/style.css\";i:363;s:34:\"post-navigation-link/style.min.css\";i:364;s:27:\"post-template/style-rtl.css\";i:365;s:31:\"post-template/style-rtl.min.css\";i:366;s:23:\"post-template/style.css\";i:367;s:27:\"post-template/style.min.css\";i:368;s:24:\"post-terms/style-rtl.css\";i:369;s:28:\"post-terms/style-rtl.min.css\";i:370;s:20:\"post-terms/style.css\";i:371;s:24:\"post-terms/style.min.css\";i:372;s:31:\"post-time-to-read/style-rtl.css\";i:373;s:35:\"post-time-to-read/style-rtl.min.css\";i:374;s:27:\"post-time-to-read/style.css\";i:375;s:31:\"post-time-to-read/style.min.css\";i:376;s:24:\"post-title/style-rtl.css\";i:377;s:28:\"post-title/style-rtl.min.css\";i:378;s:20:\"post-title/style.css\";i:379;s:24:\"post-title/style.min.css\";i:380;s:26:\"preformatted/style-rtl.css\";i:381;s:30:\"preformatted/style-rtl.min.css\";i:382;s:22:\"preformatted/style.css\";i:383;s:26:\"preformatted/style.min.css\";i:384;s:24:\"pullquote/editor-rtl.css\";i:385;s:28:\"pullquote/editor-rtl.min.css\";i:386;s:20:\"pullquote/editor.css\";i:387;s:24:\"pullquote/editor.min.css\";i:388;s:23:\"pullquote/style-rtl.css\";i:389;s:27:\"pullquote/style-rtl.min.css\";i:390;s:19:\"pullquote/style.css\";i:391;s:23:\"pullquote/style.min.css\";i:392;s:23:\"pullquote/theme-rtl.css\";i:393;s:27:\"pullquote/theme-rtl.min.css\";i:394;s:19:\"pullquote/theme.css\";i:395;s:23:\"pullquote/theme.min.css\";i:396;s:39:\"query-pagination-numbers/editor-rtl.css\";i:397;s:43:\"query-pagination-numbers/editor-rtl.min.css\";i:398;s:35:\"query-pagination-numbers/editor.css\";i:399;s:39:\"query-pagination-numbers/editor.min.css\";i:400;s:31:\"query-pagination/editor-rtl.css\";i:401;s:35:\"query-pagination/editor-rtl.min.css\";i:402;s:27:\"query-pagination/editor.css\";i:403;s:31:\"query-pagination/editor.min.css\";i:404;s:30:\"query-pagination/style-rtl.css\";i:405;s:34:\"query-pagination/style-rtl.min.css\";i:406;s:26:\"query-pagination/style.css\";i:407;s:30:\"query-pagination/style.min.css\";i:408;s:25:\"query-title/style-rtl.css\";i:409;s:29:\"query-title/style-rtl.min.css\";i:410;s:21:\"query-title/style.css\";i:411;s:25:\"query-title/style.min.css\";i:412;s:25:\"query-total/style-rtl.css\";i:413;s:29:\"query-total/style-rtl.min.css\";i:414;s:21:\"query-total/style.css\";i:415;s:25:\"query-total/style.min.css\";i:416;s:20:\"query/editor-rtl.css\";i:417;s:24:\"query/editor-rtl.min.css\";i:418;s:16:\"query/editor.css\";i:419;s:20:\"query/editor.min.css\";i:420;s:19:\"quote/style-rtl.css\";i:421;s:23:\"quote/style-rtl.min.css\";i:422;s:15:\"quote/style.css\";i:423;s:19:\"quote/style.min.css\";i:424;s:19:\"quote/theme-rtl.css\";i:425;s:23:\"quote/theme-rtl.min.css\";i:426;s:15:\"quote/theme.css\";i:427;s:19:\"quote/theme.min.css\";i:428;s:23:\"read-more/style-rtl.css\";i:429;s:27:\"read-more/style-rtl.min.css\";i:430;s:19:\"read-more/style.css\";i:431;s:23:\"read-more/style.min.css\";i:432;s:18:\"rss/editor-rtl.css\";i:433;s:22:\"rss/editor-rtl.min.css\";i:434;s:14:\"rss/editor.css\";i:435;s:18:\"rss/editor.min.css\";i:436;s:17:\"rss/style-rtl.css\";i:437;s:21:\"rss/style-rtl.min.css\";i:438;s:13:\"rss/style.css\";i:439;s:17:\"rss/style.min.css\";i:440;s:21:\"search/editor-rtl.css\";i:441;s:25:\"search/editor-rtl.min.css\";i:442;s:17:\"search/editor.css\";i:443;s:21:\"search/editor.min.css\";i:444;s:20:\"search/style-rtl.css\";i:445;s:24:\"search/style-rtl.min.css\";i:446;s:16:\"search/style.css\";i:447;s:20:\"search/style.min.css\";i:448;s:20:\"search/theme-rtl.css\";i:449;s:24:\"search/theme-rtl.min.css\";i:450;s:16:\"search/theme.css\";i:451;s:20:\"search/theme.min.css\";i:452;s:24:\"separator/editor-rtl.css\";i:453;s:28:\"separator/editor-rtl.min.css\";i:454;s:20:\"separator/editor.css\";i:455;s:24:\"separator/editor.min.css\";i:456;s:23:\"separator/style-rtl.css\";i:457;s:27:\"separator/style-rtl.min.css\";i:458;s:19:\"separator/style.css\";i:459;s:23:\"separator/style.min.css\";i:460;s:23:\"separator/theme-rtl.css\";i:461;s:27:\"separator/theme-rtl.min.css\";i:462;s:19:\"separator/theme.css\";i:463;s:23:\"separator/theme.min.css\";i:464;s:24:\"shortcode/editor-rtl.css\";i:465;s:28:\"shortcode/editor-rtl.min.css\";i:466;s:20:\"shortcode/editor.css\";i:467;s:24:\"shortcode/editor.min.css\";i:468;s:24:\"site-logo/editor-rtl.css\";i:469;s:28:\"site-logo/editor-rtl.min.css\";i:470;s:20:\"site-logo/editor.css\";i:471;s:24:\"site-logo/editor.min.css\";i:472;s:23:\"site-logo/style-rtl.css\";i:473;s:27:\"site-logo/style-rtl.min.css\";i:474;s:19:\"site-logo/style.css\";i:475;s:23:\"site-logo/style.min.css\";i:476;s:27:\"site-tagline/editor-rtl.css\";i:477;s:31:\"site-tagline/editor-rtl.min.css\";i:478;s:23:\"site-tagline/editor.css\";i:479;s:27:\"site-tagline/editor.min.css\";i:480;s:26:\"site-tagline/style-rtl.css\";i:481;s:30:\"site-tagline/style-rtl.min.css\";i:482;s:22:\"site-tagline/style.css\";i:483;s:26:\"site-tagline/style.min.css\";i:484;s:25:\"site-title/editor-rtl.css\";i:485;s:29:\"site-title/editor-rtl.min.css\";i:486;s:21:\"site-title/editor.css\";i:487;s:25:\"site-title/editor.min.css\";i:488;s:24:\"site-title/style-rtl.css\";i:489;s:28:\"site-title/style-rtl.min.css\";i:490;s:20:\"site-title/style.css\";i:491;s:24:\"site-title/style.min.css\";i:492;s:26:\"social-link/editor-rtl.css\";i:493;s:30:\"social-link/editor-rtl.min.css\";i:494;s:22:\"social-link/editor.css\";i:495;s:26:\"social-link/editor.min.css\";i:496;s:27:\"social-links/editor-rtl.css\";i:497;s:31:\"social-links/editor-rtl.min.css\";i:498;s:23:\"social-links/editor.css\";i:499;s:27:\"social-links/editor.min.css\";i:500;s:26:\"social-links/style-rtl.css\";i:501;s:30:\"social-links/style-rtl.min.css\";i:502;s:22:\"social-links/style.css\";i:503;s:26:\"social-links/style.min.css\";i:504;s:21:\"spacer/editor-rtl.css\";i:505;s:25:\"spacer/editor-rtl.min.css\";i:506;s:17:\"spacer/editor.css\";i:507;s:21:\"spacer/editor.min.css\";i:508;s:20:\"spacer/style-rtl.css\";i:509;s:24:\"spacer/style-rtl.min.css\";i:510;s:16:\"spacer/style.css\";i:511;s:20:\"spacer/style.min.css\";i:512;s:20:\"table/editor-rtl.css\";i:513;s:24:\"table/editor-rtl.min.css\";i:514;s:16:\"table/editor.css\";i:515;s:20:\"table/editor.min.css\";i:516;s:19:\"table/style-rtl.css\";i:517;s:23:\"table/style-rtl.min.css\";i:518;s:15:\"table/style.css\";i:519;s:19:\"table/style.min.css\";i:520;s:19:\"table/theme-rtl.css\";i:521;s:23:\"table/theme-rtl.min.css\";i:522;s:15:\"table/theme.css\";i:523;s:19:\"table/theme.min.css\";i:524;s:24:\"tag-cloud/editor-rtl.css\";i:525;s:28:\"tag-cloud/editor-rtl.min.css\";i:526;s:20:\"tag-cloud/editor.css\";i:527;s:24:\"tag-cloud/editor.min.css\";i:528;s:23:\"tag-cloud/style-rtl.css\";i:529;s:27:\"tag-cloud/style-rtl.min.css\";i:530;s:19:\"tag-cloud/style.css\";i:531;s:23:\"tag-cloud/style.min.css\";i:532;s:28:\"template-part/editor-rtl.css\";i:533;s:32:\"template-part/editor-rtl.min.css\";i:534;s:24:\"template-part/editor.css\";i:535;s:28:\"template-part/editor.min.css\";i:536;s:27:\"template-part/theme-rtl.css\";i:537;s:31:\"template-part/theme-rtl.min.css\";i:538;s:23:\"template-part/theme.css\";i:539;s:27:\"template-part/theme.min.css\";i:540;s:24:\"term-count/style-rtl.css\";i:541;s:28:\"term-count/style-rtl.min.css\";i:542;s:20:\"term-count/style.css\";i:543;s:24:\"term-count/style.min.css\";i:544;s:30:\"term-description/style-rtl.css\";i:545;s:34:\"term-description/style-rtl.min.css\";i:546;s:26:\"term-description/style.css\";i:547;s:30:\"term-description/style.min.css\";i:548;s:23:\"term-name/style-rtl.css\";i:549;s:27:\"term-name/style-rtl.min.css\";i:550;s:19:\"term-name/style.css\";i:551;s:23:\"term-name/style.min.css\";i:552;s:28:\"term-template/editor-rtl.css\";i:553;s:32:\"term-template/editor-rtl.min.css\";i:554;s:24:\"term-template/editor.css\";i:555;s:28:\"term-template/editor.min.css\";i:556;s:27:\"term-template/style-rtl.css\";i:557;s:31:\"term-template/style-rtl.min.css\";i:558;s:23:\"term-template/style.css\";i:559;s:27:\"term-template/style.min.css\";i:560;s:27:\"text-columns/editor-rtl.css\";i:561;s:31:\"text-columns/editor-rtl.min.css\";i:562;s:23:\"text-columns/editor.css\";i:563;s:27:\"text-columns/editor.min.css\";i:564;s:26:\"text-columns/style-rtl.css\";i:565;s:30:\"text-columns/style-rtl.min.css\";i:566;s:22:\"text-columns/style.css\";i:567;s:26:\"text-columns/style.min.css\";i:568;s:19:\"verse/style-rtl.css\";i:569;s:23:\"verse/style-rtl.min.css\";i:570;s:15:\"verse/style.css\";i:571;s:19:\"verse/style.min.css\";i:572;s:20:\"video/editor-rtl.css\";i:573;s:24:\"video/editor-rtl.min.css\";i:574;s:16:\"video/editor.css\";i:575;s:20:\"video/editor.min.css\";i:576;s:19:\"video/style-rtl.css\";i:577;s:23:\"video/style-rtl.min.css\";i:578;s:15:\"video/style.css\";i:579;s:19:\"video/style.min.css\";i:580;s:19:\"video/theme-rtl.css\";i:581;s:23:\"video/theme-rtl.min.css\";i:582;s:15:\"video/theme.css\";i:583;s:19:\"video/theme.min.css\";}}','yes'),(125,'https_detection_errors','a:0:{}','off'),(212,'widget_akismet_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(231,'abl_iaff_version','4.3.1','yes'),(140,'_transient_health-check-site-status-result','{\"good\":15,\"recommended\":8,\"critical\":1}','yes'),(246,'auto_update','on','yes'),(247,'log_install','1','yes'),(204,'finished_updating_comment_type','1','yes'),(24860,'db_upgraded','','on'),(24859,'wp_attachment_pages_enabled','1','on'),(2031,'action_scheduler_lock_async-request-runner','1700153283','yes'),(2140,'wp_mail_smtp_lite_sent_email_counter','34','yes'),(2141,'wp_mail_smtp_lite_weekly_sent_email_counter','a:1:{i:46;i:34;}','yes'),(2035,'wp_mail_smtp_migration_version','5','yes'),(2036,'wp_mail_smtp_debug_events_db_version','1','yes'),(205,'recently_activated','a:1:{s:45:\"enable-svg-webp-ico-upload/itc-svg-upload.php\";i:1758626600;}','off'),(206,'acf_version','6.1.7','yes'),(269,'wpseo','a:106:{s:8:\"tracking\";b:1;s:16:\"toggled_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:1;s:16:\"indexing_started\";b:0;s:15:\"indexing_reason\";s:23:\"home_url_option_changed\";s:29:\"indexables_indexing_completed\";b:1;s:13:\"index_now_key\";s:100:\"lcOKunKIBJlIL2z7FlfKmYjOEbTPr2TugZLu2AWtIc9FQuf3Ttm5v2SVK04G1bysLohVzQTZXrjrXPgh5Eq4Ka2PdSmgsPJyJxnK\";s:7:\"version\";s:4:\"21.4\";s:16:\"previous_version\";s:0:\"\";s:20:\"disableadvanced_meta\";b:1;s:30:\"enable_headless_rest_endpoints\";b:1;s:17:\"ryte_indexability\";b:0;s:11:\"baiduverify\";s:0:\"\";s:12:\"googleverify\";s:0:\"\";s:8:\"msverify\";s:0:\"\";s:12:\"yandexverify\";s:0:\"\";s:9:\"site_type\";s:0:\"\";s:20:\"has_multiple_authors\";s:0:\"\";s:16:\"environment_type\";s:0:\"\";s:23:\"content_analysis_active\";b:1;s:23:\"keyword_analysis_active\";b:1;s:34:\"inclusive_language_analysis_active\";b:0;s:21:\"enable_admin_bar_menu\";b:1;s:26:\"enable_cornerstone_content\";b:1;s:18:\"enable_xml_sitemap\";b:1;s:24:\"enable_text_link_counter\";b:1;s:16:\"enable_index_now\";b:1;s:19:\"enable_ai_generator\";b:0;s:22:\"show_onboarding_notice\";b:1;s:18:\"first_activated_on\";i:1697726228;s:13:\"myyoast-oauth\";b:0;s:26:\"semrush_integration_active\";b:1;s:14:\"semrush_tokens\";a:0:{}s:20:\"semrush_country_code\";s:2:\"us\";s:19:\"permalink_structure\";s:12:\"/%postname%/\";s:8:\"home_url\";s:18:\"https://sgt.com.ua\";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:0:\"\";s:23:\"enable_metabox_insights\";b:1;s:23:\"enable_link_suggestions\";b:1;s:26:\"algolia_integration_active\";b:0;s:14:\"import_cursors\";a:0:{}s:13:\"workouts_data\";a:1:{s:13:\"configuration\";a:1:{s:13:\"finishedSteps\";a:0:{}}}s:28:\"configuration_finished_steps\";a:0:{}s:36:\"dismiss_configuration_workout_notice\";b:1;s:34:\"dismiss_premium_deactivated_notice\";b:0;s:19:\"importing_completed\";a:0:{}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:28:\"wordproof_integration_active\";b:0;s:29:\"wordproof_integration_changed\";b:0;s:18:\"first_time_install\";b:1;s:34:\"should_redirect_after_install_free\";b:0;s:34:\"activation_redirect_timestamp_free\";i:1697726228;s:18:\"remove_feed_global\";b:0;s:27:\"remove_feed_global_comments\";b:0;s:25:\"remove_feed_post_comments\";b:0;s:19:\"remove_feed_authors\";b:0;s:22:\"remove_feed_categories\";b:0;s:16:\"remove_feed_tags\";b:0;s:29:\"remove_feed_custom_taxonomies\";b:0;s:22:\"remove_feed_post_types\";b:0;s:18:\"remove_feed_search\";b:0;s:21:\"remove_atom_rdf_feeds\";b:0;s:17:\"remove_shortlinks\";b:0;s:21:\"remove_rest_api_links\";b:0;s:20:\"remove_rsd_wlw_links\";b:0;s:19:\"remove_oembed_links\";b:0;s:16:\"remove_generator\";b:0;s:20:\"remove_emoji_scripts\";b:0;s:24:\"remove_powered_by_header\";b:0;s:22:\"remove_pingback_header\";b:0;s:28:\"clean_campaign_tracking_urls\";b:0;s:16:\"clean_permalinks\";b:0;s:32:\"clean_permalinks_extra_variables\";s:0:\"\";s:14:\"search_cleanup\";b:0;s:20:\"search_cleanup_emoji\";b:0;s:23:\"search_cleanup_patterns\";b:0;s:22:\"search_character_limit\";i:50;s:20:\"deny_search_crawling\";b:0;s:21:\"deny_wp_json_crawling\";b:0;s:20:\"deny_adsbot_crawling\";b:0;s:27:\"redirect_search_pretty_urls\";b:0;s:29:\"least_readability_ignore_list\";a:0:{}s:27:\"least_seo_score_ignore_list\";a:0:{}s:23:\"most_linked_ignore_list\";a:0:{}s:24:\"least_linked_ignore_list\";a:0:{}s:28:\"indexables_page_reading_list\";a:5:{i:0;b:0;i:1;b:0;i:2;b:0;i:3;b:0;i:4;b:0;}s:25:\"indexables_overview_state\";s:21:\"dashboard-not-visited\";s:28:\"last_known_public_post_types\";a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}s:28:\"last_known_public_taxonomies\";a:3:{i:0;s:8:\"category\";i:1;s:8:\"post_tag\";i:2;s:11:\"post_format\";}s:23:\"last_known_no_unindexed\";a:6:{s:40:\"wpseo_total_unindexed_post_type_archives\";i:1774870076;s:31:\"wpseo_unindexed_post_link_count\";i:1774870076;s:31:\"wpseo_unindexed_term_link_count\";i:1774870076;s:35:\"wpseo_total_unindexed_general_items\";i:1774870075;s:27:\"wpseo_total_unindexed_posts\";i:1774870075;s:27:\"wpseo_total_unindexed_terms\";i:1774870076;}s:14:\"new_post_types\";a:0:{}s:14:\"new_taxonomies\";a:0:{}s:34:\"show_new_content_type_notification\";b:0;}','yes'),(220,'_site_transient_ai1wm_last_check_for_updates','1774861178','off'),(221,'ai1wm_updater','a:1:{s:43:\"all-in-one-wp-migration-unlimited-extension\";a:13:{s:4:\"name\";s:19:\"Unlimited Extension\";s:4:\"slug\";s:19:\"unlimited-extension\";s:8:\"homepage\";s:51:\"https://servmask.com/extensions/unlimited-extension\";s:13:\"download_link\";s:29:\"https://servmask.com/purchase\";s:7:\"version\";s:4:\"2.83\";s:6:\"author\";s:8:\"ServMask\";s:15:\"author_homepage\";s:20:\"https://servmask.com\";s:8:\"sections\";a:1:{s:11:\"description\";s:266:\"<ul class=\"description\"><li>Remove upload limits</li><li>Use on any number of websites that you own</li><li>Restore backup from server</li><li>Reset Hub: Reset tools for efficient site management new</li><li>WP CLI commands included</li><li>Premium support</li></ul>\";}s:7:\"banners\";a:2:{s:3:\"low\";s:119:\"https://d1zsuv05404qm1.cloudfront.net/5dea81c4-d52c-432f-af83-c703d01c9206/img/products/unlimited-extension-772x250.png\";s:4:\"high\";s:120:\"https://d1zsuv05404qm1.cloudfront.net/5dea81c4-d52c-432f-af83-c703d01c9206/img/products/unlimited-extension-1544x500.png\";}s:5:\"icons\";a:3:{s:2:\"1x\";s:119:\"https://d1zsuv05404qm1.cloudfront.net/5dea81c4-d52c-432f-af83-c703d01c9206/img/products/unlimited-extension-128x128.png\";s:2:\"2x\";s:119:\"https://d1zsuv05404qm1.cloudfront.net/5dea81c4-d52c-432f-af83-c703d01c9206/img/products/unlimited-extension-256x256.png\";s:7:\"default\";s:119:\"https://d1zsuv05404qm1.cloudfront.net/5dea81c4-d52c-432f-af83-c703d01c9206/img/products/unlimited-extension-256x256.png\";}s:6:\"rating\";i:99;s:11:\"num_ratings\";i:509;s:10:\"downloaded\";i:50188;}}','yes'),(217,'ai1wm_secret_key','fOZRrZV07xQj','yes'),(267,'yoast_migrations_free','a:1:{s:7:\"version\";s:4:\"21.4\";}','yes'),(222,'ai1wmue_plugin_key','341b983a-9b00-4881-afed-388f2df4bb26','yes'),(271,'wpseo_social','a:20:{s:13:\"facebook_site\";s:0:\"\";s:13:\"instagram_url\";s:0:\"\";s:12:\"linkedin_url\";s:0:\"\";s:11:\"myspace_url\";s:0:\"\";s:16:\"og_default_image\";s:0:\"\";s:19:\"og_default_image_id\";s:0:\"\";s:18:\"og_frontpage_title\";s:0:\"\";s:17:\"og_frontpage_desc\";s:0:\"\";s:18:\"og_frontpage_image\";s:0:\"\";s:21:\"og_frontpage_image_id\";s:0:\"\";s:9:\"opengraph\";b:1;s:13:\"pinterest_url\";s:0:\"\";s:15:\"pinterestverify\";s:0:\"\";s:7:\"twitter\";b:1;s:12:\"twitter_site\";s:0:\"\";s:17:\"twitter_card_type\";s:19:\"summary_large_image\";s:11:\"youtube_url\";s:0:\"\";s:13:\"wikipedia_url\";s:0:\"\";s:17:\"other_social_urls\";a:0:{}s:12:\"mastodon_url\";s:0:\"\";}','yes'),(228,'iaff_bulk_updater_counter','0','yes'),(237,'external_updates-auto-image-attributes-pro','O:8:\"stdClass\":5:{s:9:\"lastCheck\";i:1697725993;s:14:\"checkedVersion\";s:3:\"3.2\";s:6:\"update\";O:8:\"stdClass\":11:{s:4:\"slug\";s:25:\"auto-image-attributes-pro\";s:7:\"version\";s:5:\"4.3.1\";s:12:\"download_url\";N;s:12:\"translations\";a:0:{}s:2:\"id\";i:0;s:8:\"homepage\";s:30:\"https://imageattributespro.com\";s:6:\"tested\";s:5:\"6.3.1\";s:12:\"requires_php\";s:6:\"5.6.20\";s:14:\"upgrade_notice\";s:421:\"<br><span class=\"dashicons dashicons-no\" style=\"color:#DC3232; margin-right: 6px;\"></span><a href=\"https://imageattributespro.com/license-key-activation/?utm_source=iap&utm_medium=plugins-list-upgrade-notice\" target=\"_blank\">Please enter your license info</a> to download this update. <a href=\"https://imageattributespro.com/changelog/?utm_source=iap&utm_medium=plugins-list-upgrade-notice\" target=\"_blank\">Whats new?</a>\";s:5:\"icons\";a:0:{}s:8:\"filename\";s:55:\"auto-image-attributes-pro/auto-image-attributes-pro.php\";}s:11:\"updateClass\";s:23:\"Puc_v4p11_Plugin_Update\";s:15:\"updateBaseClass\";s:13:\"Plugin_Update\";}','no'),(245,'search_engines','google.,/search?,images.google., web.info.com, search.,yahoo.,yandex,msn.,baidu,bing.,doubleclick.net,googleweblight.com','yes'),(238,'ip_admin','on','yes'),(239,'ad_code','','yes'),(240,'cookies_admin','on','yes'),(241,'logged_admin','on','yes'),(242,'hide_admin','on','yes'),(243,'hide_logged_in','on','yes'),(244,'display_ad','organic','yes'),(270,'wpseo_titles','a:117:{s:17:\"forcerewritetitle\";b:0;s:9:\"separator\";s:7:\"sc-dash\";s:16:\"title-home-wpseo\";s:42:\"%%sitename%% %%page%% %%sep%% %%sitedesc%%\";s:18:\"title-author-wpseo\";s:41:\"%%name%%, Author at %%sitename%% %%page%%\";s:19:\"title-archive-wpseo\";s:38:\"%%date%% %%page%% %%sep%% %%sitename%%\";s:18:\"title-search-wpseo\";s:63:\"You searched for %%searchphrase%% %%page%% %%sep%% %%sitename%%\";s:15:\"title-404-wpseo\";s:35:\"Page not found %%sep%% %%sitename%%\";s:25:\"social-title-author-wpseo\";s:8:\"%%name%%\";s:26:\"social-title-archive-wpseo\";s:8:\"%%date%%\";s:31:\"social-description-author-wpseo\";s:0:\"\";s:32:\"social-description-archive-wpseo\";s:0:\"\";s:29:\"social-image-url-author-wpseo\";s:0:\"\";s:30:\"social-image-url-archive-wpseo\";s:0:\"\";s:28:\"social-image-id-author-wpseo\";i:0;s:29:\"social-image-id-archive-wpseo\";i:0;s:19:\"metadesc-home-wpseo\";s:0:\"\";s:21:\"metadesc-author-wpseo\";s:0:\"\";s:22:\"metadesc-archive-wpseo\";s:0:\"\";s:9:\"rssbefore\";s:0:\"\";s:8:\"rssafter\";s:53:\"The post %%POSTLINK%% appeared first on %%BLOGLINK%%.\";s:20:\"noindex-author-wpseo\";b:0;s:28:\"noindex-author-noposts-wpseo\";b:1;s:21:\"noindex-archive-wpseo\";b:1;s:14:\"disable-author\";b:0;s:12:\"disable-date\";b:0;s:19:\"disable-post_format\";b:0;s:18:\"disable-attachment\";b:1;s:20:\"breadcrumbs-404crumb\";s:25:\"Error 404: Page not found\";s:29:\"breadcrumbs-display-blog-page\";b:1;s:20:\"breadcrumbs-boldlast\";b:0;s:25:\"breadcrumbs-archiveprefix\";s:12:\"Archives for\";s:18:\"breadcrumbs-enable\";b:1;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:0:\"\";s:12:\"company_name\";s:0:\"\";s:22:\"company_alternate_name\";s:0:\"\";s:17:\"company_or_person\";s:7:\"company\";s:25:\"company_or_person_user_id\";b:0;s:17:\"stripcategorybase\";b:0;s:26:\"open_graph_frontpage_title\";s:12:\"%%sitename%%\";s:25:\"open_graph_frontpage_desc\";s:0:\"\";s:26:\"open_graph_frontpage_image\";s:0:\"\";s:24:\"publishing_principles_id\";i:0;s:25:\"ownership_funding_info_id\";i:0;s:29:\"actionable_feedback_policy_id\";i:0;s:21:\"corrections_policy_id\";i:0;s:16:\"ethics_policy_id\";i:0;s:19:\"diversity_policy_id\";i:0;s:28:\"diversity_staffing_report_id\";i:0;s:10:\"title-post\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-post\";s:0:\"\";s:12:\"noindex-post\";b:0;s:23:\"display-metabox-pt-post\";b:1;s:23:\"post_types-post-maintax\";i:0;s:21:\"schema-page-type-post\";s:7:\"WebPage\";s:24:\"schema-article-type-post\";s:7:\"Article\";s:17:\"social-title-post\";s:9:\"%%title%%\";s:23:\"social-description-post\";s:0:\"\";s:21:\"social-image-url-post\";s:0:\"\";s:20:\"social-image-id-post\";i:0;s:10:\"title-page\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-page\";s:0:\"\";s:12:\"noindex-page\";b:0;s:23:\"display-metabox-pt-page\";b:1;s:23:\"post_types-page-maintax\";i:0;s:21:\"schema-page-type-page\";s:7:\"WebPage\";s:24:\"schema-article-type-page\";s:4:\"None\";s:17:\"social-title-page\";s:9:\"%%title%%\";s:23:\"social-description-page\";s:0:\"\";s:21:\"social-image-url-page\";s:0:\"\";s:20:\"social-image-id-page\";i:0;s:16:\"title-attachment\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:19:\"metadesc-attachment\";s:0:\"\";s:18:\"noindex-attachment\";b:0;s:29:\"display-metabox-pt-attachment\";b:1;s:29:\"post_types-attachment-maintax\";i:0;s:27:\"schema-page-type-attachment\";s:7:\"WebPage\";s:30:\"schema-article-type-attachment\";s:4:\"None\";s:18:\"title-tax-category\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-category\";s:0:\"\";s:28:\"display-metabox-tax-category\";b:1;s:20:\"noindex-tax-category\";b:0;s:25:\"social-title-tax-category\";s:23:\"%%term_title%% Archives\";s:31:\"social-description-tax-category\";s:0:\"\";s:29:\"social-image-url-tax-category\";s:0:\"\";s:28:\"social-image-id-tax-category\";i:0;s:26:\"taxonomy-category-ptparent\";i:0;s:18:\"title-tax-post_tag\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-post_tag\";s:0:\"\";s:28:\"display-metabox-tax-post_tag\";b:1;s:20:\"noindex-tax-post_tag\";b:0;s:25:\"social-title-tax-post_tag\";s:23:\"%%term_title%% Archives\";s:31:\"social-description-tax-post_tag\";s:0:\"\";s:29:\"social-image-url-tax-post_tag\";s:0:\"\";s:28:\"social-image-id-tax-post_tag\";i:0;s:26:\"taxonomy-post_tag-ptparent\";i:0;s:21:\"title-tax-post_format\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:24:\"metadesc-tax-post_format\";s:0:\"\";s:31:\"display-metabox-tax-post_format\";b:1;s:23:\"noindex-tax-post_format\";b:1;s:28:\"social-title-tax-post_format\";s:23:\"%%term_title%% Archives\";s:34:\"social-description-tax-post_format\";s:0:\"\";s:32:\"social-image-url-tax-post_format\";s:0:\"\";s:31:\"social-image-id-tax-post_format\";i:0;s:29:\"taxonomy-post_format-ptparent\";i:0;s:14:\"person_logo_id\";i:0;s:15:\"company_logo_id\";i:0;s:17:\"company_logo_meta\";b:0;s:16:\"person_logo_meta\";b:0;s:29:\"open_graph_frontpage_image_id\";i:0;}','yes'),(254,'MPSUM','a:3:{s:8:\"advanced\";a:1:{s:14:\"excluded_users\";a:0:{}}s:4:\"core\";a:14:{s:11:\"all_updates\";s:3:\"off\";s:15:\"version_control\";s:3:\"off\";s:12:\"core_updates\";s:2:\"on\";s:14:\"plugin_updates\";s:2:\"on\";s:13:\"theme_updates\";s:2:\"on\";s:19:\"translation_updates\";s:2:\"on\";s:29:\"automatic_development_updates\";s:3:\"off\";s:31:\"notification_core_update_emails\";s:2:\"on\";s:4:\"logs\";s:2:\"on\";s:15:\"email_addresses\";a:0:{}s:11:\"ratings_nag\";s:2:\"on\";s:39:\"plugin_auto_updates_notification_emails\";s:2:\"on\";s:38:\"theme_auto_updates_notification_emails\";s:2:\"on\";s:44:\"translation_auto_updates_notification_emails\";s:2:\"on\";}s:19:\"migrated_from_9_0_9\";b:1;}','yes'),(255,'mpsum_log_table_version','1.1.6','yes'),(293,'yoast_premium_as_an_addon_installer','completed','yes'),(294,'yoast_migrations_premium','a:1:{s:7:\"version\";s:4:\"20.8\";}','yes'),(296,'wpseo_current_version','16','no'),(297,'wpseo_premium_version','20.8','yes'),(298,'wpseo-premium-redirects-export-plain','a:1:{s:48:\"%d0%b3%d0%be%d0%bb%d0%be%d0%b2%d0%bd%d0%b0/about\";a:2:{s:3:\"url\";s:5:\"about\";s:4:\"type\";i:301;}}','yes'),(299,'wpseo-premium-redirects-export-regex','a:0:{}','yes'),(302,'wpseo_tracking_last_request','1774870075','on'),(320,'current_theme','','yes'),(321,'theme_mods_smartGT','a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}s:18:\"custom_css_post_id\";i:193;}','yes'),(322,'theme_switched','','yes'),(295,'wpseo_premium','a:4:{s:34:\"prominent_words_indexing_completed\";b:0;s:8:\"workouts\";a:1:{s:11:\"cornerstone\";a:1:{s:13:\"finishedSteps\";a:0:{}}}s:29:\"should_redirect_after_install\";b:0;s:29:\"activation_redirect_timestamp\";i:1697726258;}','yes'),(312,'wpseo_redirect','a:2:{s:20:\"disable_php_redirect\";s:3:\"off\";s:13:\"separate_file\";s:3:\"off\";}','yes'),(2019,'action_scheduler_hybrid_store_demarkation','50','yes'),(2020,'schema-ActionScheduler_StoreSchema','7.0.1700143808','yes'),(2021,'schema-ActionScheduler_LoggerSchema','3.0.1700143808','yes'),(2022,'wp_mail_smtp_initial_version','3.10.0','no'),(2023,'wp_mail_smtp_version','3.10.0','no'),(2024,'wp_mail_smtp','a:17:{s:4:\"mail\";a:6:{s:10:\"from_email\";s:20:\"wordpress@sgt.com.ua\";s:9:\"from_name\";s:8:\"Smart GT\";s:6:\"mailer\";s:4:\"smtp\";s:11:\"return_path\";b:0;s:16:\"from_email_force\";b:1;s:15:\"from_name_force\";b:0;}s:4:\"smtp\";a:7:{s:7:\"autotls\";b:1;s:4:\"auth\";b:1;s:4:\"host\";s:21:\"outlook.office365.com\";s:4:\"port\";i:465;s:10:\"encryption\";s:3:\"ssl\";s:4:\"user\";s:24:\"testkillkoll@outlook.com\";s:4:\"pass\";s:68:\"03rshu/HOAce3L36bWV9S9yLBYW1mbfcVEZFF3Sb0nyOZ5Quyq/lNpEfnZ3seOQYMbQ=\";}s:7:\"general\";a:1:{s:29:\"summary_report_email_disabled\";b:1;}s:9:\"sendlayer\";a:1:{s:7:\"api_key\";s:0:\"\";}s:7:\"smtpcom\";a:2:{s:7:\"api_key\";s:0:\"\";s:7:\"channel\";s:0:\"\";}s:10:\"sendinblue\";a:2:{s:7:\"api_key\";s:0:\"\";s:6:\"domain\";s:0:\"\";}s:7:\"mailgun\";a:3:{s:7:\"api_key\";s:0:\"\";s:6:\"domain\";s:0:\"\";s:6:\"region\";s:2:\"US\";}s:8:\"sendgrid\";a:2:{s:7:\"api_key\";s:0:\"\";s:6:\"domain\";s:0:\"\";}s:9:\"sparkpost\";a:2:{s:7:\"api_key\";s:0:\"\";s:6:\"region\";s:2:\"US\";}s:8:\"postmark\";a:2:{s:16:\"server_api_token\";s:0:\"\";s:14:\"message_stream\";s:0:\"\";}s:9:\"amazonses\";a:3:{s:9:\"client_id\";s:0:\"\";s:13:\"client_secret\";s:0:\"\";s:6:\"region\";s:9:\"us-east-1\";}s:5:\"gmail\";a:4:{s:9:\"client_id\";s:0:\"\";s:13:\"client_secret\";s:0:\"\";s:12:\"access_token\";a:0:{}s:13:\"refresh_token\";s:0:\"\";}s:7:\"outlook\";a:5:{s:9:\"client_id\";s:0:\"\";s:13:\"client_secret\";s:0:\"\";s:12:\"access_token\";a:0:{}s:13:\"refresh_token\";s:0:\"\";s:12:\"user_details\";a:1:{s:5:\"email\";s:0:\"\";}}s:4:\"zoho\";a:6:{s:9:\"client_id\";s:0:\"\";s:13:\"client_secret\";s:0:\"\";s:6:\"domain\";s:3:\"com\";s:12:\"access_token\";a:0:{}s:13:\"refresh_token\";s:0:\"\";s:12:\"user_details\";a:1:{s:5:\"email\";s:0:\"\";}}s:4:\"logs\";a:5:{s:7:\"enabled\";b:0;s:17:\"log_email_content\";b:0;s:16:\"save_attachments\";b:0;s:19:\"open_email_tracking\";b:0;s:19:\"click_link_tracking\";b:0;}s:11:\"alert_email\";a:2:{s:7:\"enabled\";b:0;s:11:\"connections\";a:0:{}}s:12:\"debug_events\";a:2:{s:11:\"email_debug\";b:1;s:16:\"retention_period\";i:0;}}','no'),(2025,'wp_mail_smtp_activated_time','1700143808','no'),(2026,'wp_mail_smtp_activated','a:1:{s:4:\"lite\";i:1700143808;}','yes'),(2037,'wp_mail_smtp_activation_prevent_redirect','1','yes'),(2039,'wp_mail_smtp_setup_wizard_stats','a:3:{s:13:\"launched_time\";i:1700143814;s:14:\"completed_time\";i:1700144762;s:14:\"was_successful\";b:0;}','no'),(2045,'wp_mail_smtp_mail_key','hyvVMY30taGrZUpkhFNlwh0RhYTborgtcM6aNJywocM=','yes'),(2047,'wp_mail_smtp_debug','a:5:{i:0;i:23;i:1;i:25;i:2;i:27;i:3;i:29;i:4;i:31;}','no'),(2055,'wp_mail_smtp_review_notice','a:2:{s:4:\"time\";i:1700144769;s:9:\"dismissed\";b:0;}','yes'),(2060,'wp_mail_smtp_notifications','a:4:{s:6:\"update\";i:1700144834;s:4:\"feed\";a:0:{}s:6:\"events\";a:0:{}s:9:\"dismissed\";a:0:{}}','yes'),(638,'category_children','a:0:{}','yes'),(1879,'_wp_suggested_policy_text_has_changed','not-changed','off'),(607,'recovery_mode_email_last_sent','1700084596','yes'),(461,'wpseo-premium-redirects-base','a:1:{i:0;a:4:{s:6:\"origin\";s:48:\"%d0%b3%d0%be%d0%bb%d0%be%d0%b2%d0%bd%d0%b0/about\";s:3:\"url\";s:5:\"about\";s:4:\"type\";i:301;s:6:\"format\";s:5:\"plain\";}}','no'),(63331,'wp_notes_notify','1','on'),(30450,'new_admin_email','info@sgt.com.ua','auto'),(53969,'_site_transient_wp_plugin_dependencies_plugin_data','a:0:{}','off'),(76157,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.9.4.zip\";s:6:\"locale\";s:2:\"uk\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.9.4.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.9.4-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.9.4-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.9.4\";s:7:\"version\";s:5:\"6.9.4\";s:11:\"php_version\";s:6:\"7.2.24\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1774835632;s:15:\"version_checked\";s:5:\"6.9.4\";s:12:\"translations\";a:0:{}}','off'),(78675,'_transient_timeout_acf_plugin_updates','1775033979','off'),(78676,'_transient_acf_plugin_updates','a:5:{s:7:\"plugins\";a:1:{s:34:\"advanced-custom-fields-pro/acf.php\";a:11:{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:5:\"6.7.2\";s:3:\"url\";s:36:\"https://www.advancedcustomfields.com\";s:6:\"tested\";s:5:\"6.9.4\";s:7:\"package\";s:0:\"\";s:5:\"icons\";a:1:{s:7:\"default\";s:64:\"https://connect.advancedcustomfields.com/assets/icon-256x256.png\";}s:7:\"banners\";a:2:{s:3:\"low\";s:66:\"https://connect.advancedcustomfields.com/assets/banner-772x250.jpg\";s:4:\"high\";s:67:\"https://connect.advancedcustomfields.com/assets/banner-1544x500.jpg\";}s:8:\"requires\";s:3:\"6.2\";s:12:\"requires_php\";s:3:\"7.4\";s:12:\"release_date\";s:8:\"20260326\";}}s:9:\"no_update\";a:0:{}s:10:\"expiration\";i:172800;s:6:\"status\";i:1;s:7:\"checked\";a:1:{s:34:\"advanced-custom-fields-pro/acf.php\";s:5:\"6.1.7\";}}','off'),(77858,'_site_transient_timeout_php_check_e1575808cef126e0bfb4325cceefee7d','1774971697','off'),(77859,'_site_transient_php_check_e1575808cef126e0bfb4325cceefee7d','a:5:{s:19:\"recommended_version\";s:3:\"8.3\";s:15:\"minimum_version\";s:6:\"7.2.24\";s:12:\"is_supported\";b:0;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}','off'),(78693,'_transient_timeout_wpseo_total_unindexed_posts','1774956475','off'),(78694,'_transient_wpseo_total_unindexed_posts','0','off'),(78695,'_transient_timeout_wpseo_total_unindexed_post_type_archives','1774956476','off'),(78696,'_transient_wpseo_total_unindexed_post_type_archives','0','off'),(78697,'_transient_timeout_wpseo_total_unindexed_terms','1774956476','off'),(78698,'_transient_wpseo_total_unindexed_terms','0','off'),(78699,'_transient_timeout_wpseo_unindexed_post_link_count','1774956476','off'),(78700,'_transient_wpseo_unindexed_post_link_count','0','off'),(78701,'_transient_timeout_wpseo_unindexed_term_link_count','1774956476','off'),(78702,'_transient_wpseo_unindexed_term_link_count','0','off'),(78703,'_transient_timeout_total_unindexed_prominent_words','1774956476','off'),(78704,'_transient_total_unindexed_prominent_words','3','off'),(78713,'_site_transient_timeout_browser_89d08d8f1c05801bdb27153963b67a30','1775474878','off'),(78714,'_site_transient_browser_89d08d8f1c05801bdb27153963b67a30','a:10:{s:4:\"name\";s:6:\"Safari\";s:7:\"version\";s:6:\"26.3.1\";s:8:\"platform\";s:9:\"Macintosh\";s:10:\"update_url\";s:29:\"https://www.apple.com/safari/\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/safari.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/safari.png?1\";s:15:\"current_version\";s:2:\"11\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','off'),(78725,'_site_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1774913283','off'),(78716,'_transient_timeout_wpseo-statistics-totals','1774956480','off'),(78717,'_transient_wpseo-statistics-totals','a:1:{i:1;a:2:{s:6:\"scores\";a:0:{}s:8:\"division\";b:0;}}','off'),(78726,'_site_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1774913283','off'),(78727,'_site_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1774870083','off'),(78728,'_transient_timeout_dash_v2_1ba4cf213ee97a4b25c78e8a35c7da22','1774913283','off'),(78729,'_transient_dash_v2_1ba4cf213ee97a4b25c78e8a35c7da22','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2026/03/wordpress-7-0-release-candidate-2/\'>WordPress 7.0 Release Candidate 2</a></li><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2026/03/wp-packages/\'>WP Packages is Working the Way Open Source Should</a></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://openchannels.fm/the-case-for-connecting-decentralized-networks/\'>Open Channels FM: The Case for Connecting Decentralized Networks</a></li><li><a class=\'rsswidget\' href=\'https://ma.tt/2026/03/hov/\'>Matt: JAŸ-Z Returns</a></li><li><a class=\'rsswidget\' href=\'https://gutenbergtimes.com/podcast/gutenberg-changelog-129/\'>Gutenberg Times: Gutenberg Changelog #129 Artificial Intelligence, WordPress 7.0 and Gutenberg 22.8</a></li></ul></div>','off'),(53887,'_transient_timeout_feed_9bbd59226dc36b9b26cd43f15694c5c3','1758660685','off'),(54024,'bodhi_svgs_plugin_version','2.5.14','auto'),(78766,'_site_transient_timeout_wp_theme_files_patterns-ffdd557ebafdefe1b36f000ccd279a3f','1774891205','off'),(78767,'_site_transient_wp_theme_files_patterns-ffdd557ebafdefe1b36f000ccd279a3f','a:2:{s:7:\"version\";s:0:\"\";s:8:\"patterns\";a:0:{}}','off'),(78691,'_transient_timeout_wpseo_total_unindexed_general_items','1774956475','off'),(53890,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1758660686','off'),(78757,'_site_transient_available_translations','a:132:{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:\"am\";a:8:{s:8:\"language\";s:2:\"am\";s:7:\"version\";s:6:\"6.0.11\";s:7:\"updated\";s:19:\"2022-09-29 20:43:49\";s:12:\"english_name\";s:7:\"Amharic\";s:11:\"native_name\";s:12:\"አማርኛ\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.0.11/am.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"am\";i:2;s:3:\"amh\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"ቀጥል\";}}s:3:\"arg\";a:8:{s:8:\"language\";s:3:\"arg\";s:7:\"version\";s:8:\"6.2-beta\";s:7:\"updated\";s:19:\"2022-09-22 16:46:56\";s:12:\"english_name\";s:9:\"Aragonese\";s:11:\"native_name\";s:9:\"Aragonés\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/6.2-beta/arg.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"an\";i:2;s:3:\"arg\";i:3;s:3:\"arg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continar\";}}s:2:\"ar\";a:8:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"6.4.8\";s:7:\"updated\";s:19:\"2024-02-13 12:49:38\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.4.8/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:12:\"متابعة\";}}s:3:\"ary\";a:8:{s:8:\"language\";s:3:\"ary\";s:7:\"version\";s:6:\"4.8.27\";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.27/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:\"6.9.4\";s:7:\"updated\";s:19:\"2026-03-29 14:19:02\";s:12:\"english_name\";s:8:\"Assamese\";s:11:\"native_name\";s:21:\"অসমীয়া\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.9.4/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:\"6.4.8\";s:7:\"updated\";s:19:\"2024-01-19 08:58: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/6.4.8/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.28\";s:7:\"updated\";s:19:\"2024-12-26 00:37:42\";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.28/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:\"6.9.4\";s:7:\"updated\";s:19:\"2026-03-02 09:00:09\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.9.4/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:5:\"6.9.4\";s:7:\"updated\";s:19:\"2026-02-07 06:54:04\";s:12:\"english_name\";s:20:\"Bengali (Bangladesh)\";s:11:\"native_name\";s:15:\"বাংলা\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.9.4/bn_BD.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"bn\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:28:\"চালিয়ে যান\";}}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:\"6.2.9\";s:7:\"updated\";s:19:\"2023-02-22 20:45:53\";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/6.2.9/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:\"6.9.4\";s:7:\"updated\";s:19:\"2026-03-28 04:40:01\";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/6.9.4/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:\"6.9.4\";s:7:\"updated\";s:19:\"2026-03-28 06:23:08\";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/6.9.4/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:\"6.9.4\";s:7:\"updated\";s:19:\"2026-02-20 11:38:29\";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/6.9.4/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:\"6.9.4\";s:7:\"updated\";s:19:\"2026-03-28 03:13:47\";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/6.9.4/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:5:\"de_AT\";a:8:{s:8:\"language\";s:5:\"de_AT\";s:7:\"version\";s:5:\"6.9.4\";s:7:\"updated\";s:19:\"2025-10-23 12:01:47\";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/6.9.4/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_DE\";a:8:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"6.9.4\";s:7:\"updated\";s:19:\"2026-03-30 12:23:43\";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/6.9.4/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:\"6.9.4\";s:7:\"updated\";s:19:\"2026-03-30 12:22:58\";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/6.9.4/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_CH\";a:8:{s:8:\"language\";s:5:\"de_CH\";s:7:\"version\";s:5:\"6.9.4\";s:7:\"updated\";s:19:\"2025-11-28 08:11:27\";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/6.9.4/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:14:\"de_CH_informal\";a:8:{s:8:\"language\";s:14:\"de_CH_informal\";s:7:\"version\";s:5:\"6.9.4\";s:7:\"updated\";s:19:\"2025-11-28 08:08:17\";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/6.9.4/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:3:\"dsb\";a:8:{s:8:\"language\";s:3:\"dsb\";s:7:\"version\";s:5:\"6.2.9\";s:7:\"updated\";s:19:\"2022-07-16 12:13:09\";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/6.2.9/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:\"6.9.4\";s:7:\"updated\";s:19:\"2026-02-02 11:19:29\";s:12:\"english_name\";s:5:\"Greek\";s:11:\"native_name\";s:16:\"Ελληνικά\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.9.4/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_NZ\";a:8:{s:8:\"language\";s:5:\"en_NZ\";s:7:\"version\";s:5:\"6.9.4\";s:7:\"updated\";s:19:\"2025-12-24 12:51:19\";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/6.9.4/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_ZA\";a:8:{s:8:\"language\";s:5:\"en_ZA\";s:7:\"version\";s:5:\"6.9.4\";s:7:\"updated\";s:19:\"2026-03-26 14:31:13\";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/6.9.4/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_GB\";a:8:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"6.9.4\";s:7:\"updated\";s:19:\"2025-12-30 11:47:57\";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/6.9.4/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_CA\";a:8:{s:8:\"language\";s:5:\"en_CA\";s:7:\"version\";s:5:\"6.9.4\";s:7:\"updated\";s:19:\"2026-03-27 20:40:38\";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/6.9.4/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:5:\"en_AU\";a:8:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"6.9.4\";s:7:\"updated\";s:19:\"2026-02-18 19:42:42\";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/6.9.4/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:2:\"eo\";a:8:{s:8:\"language\";s:2:\"eo\";s:7:\"version\";s:5:\"6.9.4\";s:7:\"updated\";s:19:\"2026-03-30 09:38:37\";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/6.9.4/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_CL\";a:8:{s:8:\"language\";s:5:\"es_CL\";s:7:\"version\";s:5:\"6.9.4\";s:7:\"updated\";s:19:\"2026-02-11 00:33:09\";s:12:\"english_name\";s:15:\"Spanish (Chile)\";s:11:\"native_name\";s:17:\"Español de Chile\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.9.4/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_ES\";a:8:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"6.9.4\";s:7:\"updated\";s:19:\"2026-03-28 00:00:14\";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/6.9.4/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_AR\";a:8:{s:8:\"language\";s:5:\"es_AR\";s:7:\"version\";s:5:\"6.9.4\";s:7:\"updated\";s:19:\"2026-03-28 03:02:20\";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/6.9.4/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_CR\";a:8:{s:8:\"language\";s:5:\"es_CR\";s:7:\"version\";s:3:\"6.9\";s:7:\"updated\";s:19:\"2025-10-01 22:54:47\";s:12:\"english_name\";s:20:\"Spanish (Costa Rica)\";s:11:\"native_name\";s:22:\"Español de Costa Rica\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.9/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:5:\"es_PE\";a:8:{s:8:\"language\";s:5:\"es_PE\";s:7:\"version\";s:6:\"6.9-RC\";s:7:\"updated\";s:19:\"2024-10-16 21:04:12\";s:12:\"english_name\";s:14:\"Spanish (Peru)\";s:11:\"native_name\";s:17:\"Español de Perú\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/6.9-RC/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:\"6.4.8\";s:7:\"updated\";s:19:\"2023-10-16 16:00:04\";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/6.4.8/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_EC\";a:8:{s:8:\"language\";s:5:\"es_EC\";s:7:\"version\";s:5:\"6.2.9\";s:7:\"updated\";s:19:\"2023-04-21 13:32:10\";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/6.2.9/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_DO\";a:8:{s:8:\"language\";s:5:\"es_DO\";s:7:\"version\";s:6:\"5.8.13\";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:65:\"https://downloads.wordpress.org/translation/core/5.8.13/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_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.19\";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.19/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.23\";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.23/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_CO\";a:8:{s:8:\"language\";s:5:\"es_CO\";s:7:\"version\";s:5:\"6.9.4\";s:7:\"updated\";s:19:\"2026-02-18 00:34:47\";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/6.9.4/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_MX\";a:8:{s:8:\"language\";s:5:\"es_MX\";s:7:\"version\";s:5:\"6.9.4\";s:7:\"updated\";s:19:\"2026-02-03 16:11:04\";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/6.9.4/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:2:\"et\";a:8:{s:8:\"language\";s:2:\"et\";s:7:\"version\";s:5:\"6.5.7\";s:7:\"updated\";s:19:\"2024-06-06 09:50:37\";s:12:\"english_name\";s:8:\"Estonian\";s:11:\"native_name\";s:5:\"Eesti\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.5.7/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:6:\"6.9-RC\";s:7:\"updated\";s:19:\"2025-11-05 21:53:17\";s:12:\"english_name\";s:6:\"Basque\";s:11:\"native_name\";s:7:\"Euskara\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.9-RC/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:\"6.9.4\";s:7:\"updated\";s:19:\"2025-12-25 18:17:43\";s:12:\"english_name\";s:7:\"Persian\";s:11:\"native_name\";s:10:\"فارسی\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.9.4/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:6:\"6.9-RC\";s:7:\"updated\";s:19:\"2025-02-14 17:29:08\";s:12:\"english_name\";s:21:\"Persian (Afghanistan)\";s:11:\"native_name\";s:31:\"(فارسی (افغانستان\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/6.9-RC/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:\"6.9.4\";s:7:\"updated\";s:19:\"2026-02-03 18:15:59\";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/6.9.4/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_CA\";a:8:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"6.9.4\";s:7:\"updated\";s:19:\"2025-10-03 04:54:28\";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/6.9.4/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_FR\";a:8:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"6.9.4\";s:7:\"updated\";s:19:\"2026-03-28 11:37:15\";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/6.9.4/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_BE\";a:8:{s:8:\"language\";s:5:\"fr_BE\";s:7:\"version\";s:5:\"6.5.8\";s:7:\"updated\";s:19:\"2024-02-01 23:56:53\";s:12:\"english_name\";s:16:\"French (Belgium)\";s:11:\"native_name\";s:21:\"Français de Belgique\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.5.8/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.27\";s:7:\"updated\";s:19:\"2025-12-20 19:08:53\";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.27/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:\"fy\";a:8:{s:8:\"language\";s:2:\"fy\";s:7:\"version\";s:5:\"6.2.9\";s:7:\"updated\";s:19:\"2025-10-21 16:35:04\";s:12:\"english_name\";s:7:\"Frisian\";s:11:\"native_name\";s:5:\"Frysk\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.2.9/fy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fy\";i:2;s:3:\"fry\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Trochgean\";}}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:\"6.9.4\";s:7:\"updated\";s:19:\"2026-02-01 13:15:26\";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/6.9.4/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:5:\"6.9.4\";s:7:\"updated\";s:19:\"2026-03-16 17:02:55\";s:12:\"english_name\";s:8:\"Gujarati\";s:11:\"native_name\";s:21:\"ગુજરાતી\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.9.4/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:25:\"ચાલુ રાખો\";}}s:3:\"haz\";a:8:{s:8:\"language\";s:3:\"haz\";s:7:\"version\";s:6:\"4.4.34\";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.34/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:\"6.2.9\";s:7:\"updated\";s:19:\"2024-05-04 18:39:24\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.9/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:5:\"6.4.8\";s:7:\"updated\";s:19:\"2025-02-06 05:17:11\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.8/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:\"6.9.4\";s:7:\"updated\";s:19:\"2026-01-31 09:13:17\";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/6.9.4/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:\"6.2.9\";s:7:\"updated\";s:19:\"2023-02-22 17:37:32\";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/6.2.9/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:\"6.9.4\";s:7:\"updated\";s:19:\"2026-01-26 09:03:23\";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/6.9.4/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:\"6.9.4\";s:7:\"updated\";s:19:\"2026-03-11 02:15:15\";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/6.9.4/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.28\";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.28/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:\"6.9.4\";s:7:\"updated\";s:19:\"2026-03-28 16:47:19\";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/6.9.4/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:\"6.9.4\";s:7:\"updated\";s:19:\"2026-03-13 13:31:48\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.9.4/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.28\";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.28/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:\"6.9.4\";s:7:\"updated\";s:19:\"2026-03-20 10:55:32\";s:12:\"english_name\";s:8:\"Georgian\";s:11:\"native_name\";s:21:\"ქართული\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.9.4/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:\"6.2.9\";s:7:\"updated\";s:19:\"2023-07-05 11:40:39\";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/6.2.9/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:\"6.9-RC\";s:7:\"updated\";s:19:\"2024-07-18 02:49:24\";s:12:\"english_name\";s:6:\"Kazakh\";s:11:\"native_name\";s:19:\"Қазақ тілі\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.9-RC/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.23\";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.23/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:\"6.9.4\";s:7:\"updated\";s:19:\"2026-02-02 11:49:59\";s:12:\"english_name\";s:7:\"Kannada\";s:11:\"native_name\";s:15:\"ಕನ್ನಡ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.9.4/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:\"6.9.4\";s:7:\"updated\";s:19:\"2026-03-26 00:20:52\";s:12:\"english_name\";s:6:\"Korean\";s:11:\"native_name\";s:9:\"한국어\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.9.4/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:\"6.9.4\";s:7:\"updated\";s:19:\"2026-03-24 14:14:21\";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/6.9.4/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:3:\"kir\";a:8:{s:8:\"language\";s:3:\"kir\";s:7:\"version\";s:5:\"6.9.4\";s:7:\"updated\";s:19:\"2026-03-25 22:55:12\";s:12:\"english_name\";s:6:\"Kyrgyz\";s:11:\"native_name\";s:16:\"Кыргызча\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.9.4/kir.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"ky\";i:2;s:3:\"kir\";i:3;s:3:\"kir\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:14:\"Улантуу\";}}s:2:\"lo\";a:8:{s:8:\"language\";s:2:\"lo\";s:7:\"version\";s:5:\"6.9.4\";s:7:\"updated\";s:19:\"2026-02-23 01:10:05\";s:12:\"english_name\";s:3:\"Lao\";s:11:\"native_name\";s:21:\"ພາສາລາວ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.9.4/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:6:\"6.9-RC\";s:7:\"updated\";s:19:\"2025-09-27 20:51:17\";s:12:\"english_name\";s:10:\"Lithuanian\";s:11:\"native_name\";s:15:\"Lietuvių kalba\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/6.9-RC/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:\"6.9.4\";s:7:\"updated\";s:19:\"2026-02-20 20:55:46\";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/6.9.4/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:\"6.0.11\";s:7:\"updated\";s:19:\"2022-10-01 09:23:52\";s:12:\"english_name\";s:10:\"Macedonian\";s:11:\"native_name\";s:31:\"Македонски јазик\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/6.0.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:\"6.9.4\";s:7:\"updated\";s:19:\"2026-03-23 15:49:12\";s:12:\"english_name\";s:9:\"Malayalam\";s:11:\"native_name\";s:18:\"മലയാളം\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.9.4/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:\"6.5.8\";s:7:\"updated\";s:19:\"2024-06-20 17:22:06\";s:12:\"english_name\";s:9:\"Mongolian\";s:11:\"native_name\";s:12:\"Монгол\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.5.8/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:8:\"Continue\";}}s:2:\"mr\";a:8:{s:8:\"language\";s:2:\"mr\";s:7:\"version\";s:5:\"6.9.4\";s:7:\"updated\";s:19:\"2026-02-25 15:07:24\";s:12:\"english_name\";s:7:\"Marathi\";s:11:\"native_name\";s:15:\"मराठी\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.9.4/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.18\";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.18/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.39\";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.39/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:\"6.9.4\";s:7:\"updated\";s:19:\"2026-03-26 04:23:29\";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/6.9.4/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:\"6.9-RC\";s:7:\"updated\";s:19:\"2025-11-07 08:26:32\";s:12:\"english_name\";s:6:\"Nepali\";s:11:\"native_name\";s:18:\"नेपाली\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/6.9-RC/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:5:\"nl_BE\";a:8:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:5:\"6.9.4\";s:7:\"updated\";s:19:\"2026-03-16 09:53:11\";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/6.9.4/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:\"6.9.4\";s:7:\"updated\";s:19:\"2026-03-28 07:28:56\";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/6.9.4/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:12:\"nl_NL_formal\";a:8:{s:8:\"language\";s:12:\"nl_NL_formal\";s:7:\"version\";s:5:\"6.9.4\";s:7:\"updated\";s:19:\"2026-03-28 13:02:36\";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/6.9.4/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:\"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.27\";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.27/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:15:\"Panjabi (India)\";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:\"6.9.4\";s:7:\"updated\";s:19:\"2026-03-07 22:09:59\";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/6.9.4/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.35\";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.35/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_PT\";a:8:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"6.9.4\";s:7:\"updated\";s:19:\"2026-02-04 09:12:12\";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/6.9.4/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:5:\"pt_BR\";a:8:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"6.9.4\";s:7:\"updated\";s:19:\"2026-03-29 18:57:17\";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/6.9.4/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_AO\";a:8:{s:8:\"language\";s:5:\"pt_AO\";s:7:\"version\";s:5:\"6.4.8\";s:7:\"updated\";s:19:\"2023-08-21 12:15:00\";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/6.4.8/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:10:\"pt_PT_ao90\";a:8:{s:8:\"language\";s:10:\"pt_PT_ao90\";s:7:\"version\";s:5:\"6.9.4\";s:7:\"updated\";s:19:\"2026-02-04 09:13:24\";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/6.9.4/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:\"6.9.4\";s:7:\"updated\";s:19:\"2026-03-28 08:37:00\";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/6.9.4/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:\"6.9.4\";s:7:\"updated\";s:19:\"2026-03-28 07:09:12\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.9.4/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.19\";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.19/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:\"6.9.4\";s:7:\"updated\";s:19:\"2026-02-25 08:52:18\";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/6.9.4/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:6:\"6.9-RC\";s:7:\"updated\";s:19:\"2025-04-24 16:58:02\";s:12:\"english_name\";s:7:\"Saraiki\";s:11:\"native_name\";s:14:\"سرائیکی\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/6.9-RC/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:\"6.9.4\";s:7:\"updated\";s:19:\"2025-10-29 11:19:02\";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/6.9.4/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:\"6.9.4\";s:7:\"updated\";s:19:\"2026-02-14 20:39:21\";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/6.9.4/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:\"6.9.4\";s:7:\"updated\";s:19:\"2025-12-03 15:37:44\";s:12:\"english_name\";s:7:\"Serbian\";s:11:\"native_name\";s:23:\"Српски језик\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.9.4/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:\"6.9.4\";s:7:\"updated\";s:19:\"2026-03-28 08:26:35\";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/6.9.4/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:5:\"6.9.4\";s:7:\"updated\";s:19:\"2026-02-21 11:17:30\";s:12:\"english_name\";s:7:\"Swahili\";s:11:\"native_name\";s:9:\"Kiswahili\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.9.4/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.39\";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.39/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:6:\"5.8.13\";s:7:\"updated\";s:19:\"2022-06-08 04:30:30\";s:12:\"english_name\";s:4:\"Thai\";s:11:\"native_name\";s:9:\"ไทย\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.8.13/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:5:\"6.9.4\";s:7:\"updated\";s:19:\"2026-02-26 04:01:56\";s:12:\"english_name\";s:7:\"Tagalog\";s:11:\"native_name\";s:7:\"Tagalog\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.9.4/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:\"6.9.4\";s:7:\"updated\";s:19:\"2026-03-27 23:26:16\";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/6.9.4/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:5:\"6.9.4\";s:7:\"updated\";s:19:\"2026-01-29 23:09:01\";s:12:\"english_name\";s:6:\"Uighur\";s:11:\"native_name\";s:16:\"ئۇيغۇرچە\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.9.4/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:3:\"6.8\";s:7:\"updated\";s:19:\"2025-04-18 21:10:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/6.8/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.19\";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.19/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:\"6.9.4\";s:7:\"updated\";s:19:\"2026-03-22 14:30:31\";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/6.9.4/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:3:\"yor\";a:8:{s:8:\"language\";s:3:\"yor\";s:7:\"version\";s:5:\"6.9.4\";s:7:\"updated\";s:19:\"2026-03-17 19:42:05\";s:12:\"english_name\";s:6:\"Yoruba\";s:11:\"native_name\";s:8:\"Yorùbá\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.9.4/yor.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"yo\";i:2;s:3:\"yor\";i:3;s:3:\"yor\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"Tẹ̀síwájú si\";}}s:5:\"zh_CN\";a:8:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"6.9.4\";s:7:\"updated\";s:19:\"2026-01-06 20:16:48\";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/6.9.4/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:\"继续\";}}s:5:\"zh_HK\";a:8:{s:8:\"language\";s:5:\"zh_HK\";s:7:\"version\";s:5:\"6.2.9\";s:7:\"updated\";s:19:\"2022-07-15 15:25:03\";s:12:\"english_name\";s:19:\"Chinese (Hong Kong)\";s:11:\"native_name\";s:12:\"香港中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.9/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_TW\";a:8:{s:8:\"language\";s:5:\"zh_TW\";s:7:\"version\";s:5:\"6.9.4\";s:7:\"updated\";s:19:\"2026-02-11 16:22: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/6.9.4/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:\"繼續\";}}}','off'),(78718,'_site_transient_timeout_community-events-8d619063cdbcccefe499d63aa4c69417','1774913280','off'),(78719,'_site_transient_community-events-8d619063cdbcccefe499d63aa4c69417','a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";s:12:\"194.28.101.0\";}s:6:\"events\";a:0:{}}','off'),(78720,'_site_transient_timeout_feed_9bbd59226dc36b9b26cd43f15694c5c3','1774913281','off'),(78721,'_site_transient_timeout_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1774913281','off'),(78722,'_site_transient_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1774870081','off'),(78637,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1774871588;s:7:\"checked\";a:3:{s:7:\"smartGT\";s:0:\"\";s:16:\"twentytwentyfive\";s:3:\"1.0\";s:16:\"twentytwentyfour\";s:3:\"1.3\";}s:8:\"response\";a:2:{s:16:\"twentytwentyfive\";a:6:{s:5:\"theme\";s:16:\"twentytwentyfive\";s:11:\"new_version\";s:3:\"1.4\";s:3:\"url\";s:46:\"https://wordpress.org/themes/twentytwentyfive/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/twentytwentyfive.1.4.zip\";s:8:\"requires\";s:3:\"6.7\";s:12:\"requires_php\";s:3:\"7.2\";}s:16:\"twentytwentyfour\";a:6:{s:5:\"theme\";s:16:\"twentytwentyfour\";s:11:\"new_version\";s:3:\"1.4\";s:3:\"url\";s:46:\"https://wordpress.org/themes/twentytwentyfour/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/twentytwentyfour.1.4.zip\";s:8:\"requires\";s:3:\"6.4\";s:12:\"requires_php\";s:3:\"7.0\";}}s:9:\"no_update\";a:0:{}s:12:\"translations\";a:0:{}}','off'),(78692,'_transient_wpseo_total_unindexed_general_items','0','off'),(78756,'_site_transient_timeout_available_translations','1774891095','off'),(78636,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1774871587;s:8:\"response\";a:9:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":13:{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.6\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/plugin/akismet.5.6.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:60:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=2818463\";s:2:\"1x\";s:60:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=2818463\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/akismet/assets/banner-1544x500.png?rev=2900731\";s:2:\"1x\";s:62:\"https://ps.w.org/akismet/assets/banner-772x250.png?rev=2900731\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.8\";s:6:\"tested\";s:5:\"6.9.4\";s:12:\"requires_php\";s:3:\"7.2\";s:16:\"requires_plugins\";a:0:{}}s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:37:\"w.org/plugins/all-in-one-wp-migration\";s:4:\"slug\";s:23:\"all-in-one-wp-migration\";s:6:\"plugin\";s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";s:11:\"new_version\";s:5:\"7.103\";s:3:\"url\";s:54:\"https://wordpress.org/plugins/all-in-one-wp-migration/\";s:7:\"package\";s:72:\"https://downloads.wordpress.org/plugin/all-in-one-wp-migration.7.103.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:76:\"https://ps.w.org/all-in-one-wp-migration/assets/icon-256x256.png?rev=2458334\";s:2:\"1x\";s:76:\"https://ps.w.org/all-in-one-wp-migration/assets/icon-128x128.png?rev=2458334\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:79:\"https://ps.w.org/all-in-one-wp-migration/assets/banner-1544x500.png?rev=3490368\";s:2:\"1x\";s:78:\"https://ps.w.org/all-in-one-wp-migration/assets/banner-772x250.png?rev=3490368\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.3\";s:6:\"tested\";s:5:\"6.9.4\";s:12:\"requires_php\";s:3:\"5.3\";s:16:\"requires_plugins\";a:0:{}}s:93:\"auto-image-attributes-from-filename-with-bulk-updater/iaff_image-attributes-from-filename.php\";O:8:\"stdClass\":14:{s:2:\"id\";s:67:\"w.org/plugins/auto-image-attributes-from-filename-with-bulk-updater\";s:4:\"slug\";s:53:\"auto-image-attributes-from-filename-with-bulk-updater\";s:6:\"plugin\";s:93:\"auto-image-attributes-from-filename-with-bulk-updater/iaff_image-attributes-from-filename.php\";s:11:\"new_version\";s:3:\"4.9\";s:3:\"url\";s:84:\"https://wordpress.org/plugins/auto-image-attributes-from-filename-with-bulk-updater/\";s:7:\"package\";s:96:\"https://downloads.wordpress.org/plugin/auto-image-attributes-from-filename-with-bulk-updater.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:106:\"https://ps.w.org/auto-image-attributes-from-filename-with-bulk-updater/assets/icon-128x128.png?rev=1690261\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:108:\"https://ps.w.org/auto-image-attributes-from-filename-with-bulk-updater/assets/banner-772x250.png?rev=1775029\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:5:\"3.5.0\";s:6:\"tested\";s:5:\"6.9.4\";s:12:\"requires_php\";b:0;s:16:\"requires_plugins\";a:0:{}s:14:\"upgrade_notice\";s:277:\"<ul>\n<li>Date: 17.December.2025 </li>\n<li>Tested with WordPress 6.9 </li>\n<li>Compatibility with Image Attributes Pro version 4.9. <a href=\"https://imageattributespro.com/changelog/?utm_source=wordpress.org&utm_medium=changelog\">Check what's new in 4.9</a>.</li>\n</ul>\";}s:44:\"stops-core-theme-and-plugin-updates/main.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:49:\"w.org/plugins/stops-core-theme-and-plugin-updates\";s:4:\"slug\";s:35:\"stops-core-theme-and-plugin-updates\";s:6:\"plugin\";s:44:\"stops-core-theme-and-plugin-updates/main.php\";s:11:\"new_version\";s:6:\"9.0.20\";s:3:\"url\";s:66:\"https://wordpress.org/plugins/stops-core-theme-and-plugin-updates/\";s:7:\"package\";s:85:\"https://downloads.wordpress.org/plugin/stops-core-theme-and-plugin-updates.9.0.20.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:88:\"https://ps.w.org/stops-core-theme-and-plugin-updates/assets/icon-256x256.png?rev=1896941\";s:2:\"1x\";s:88:\"https://ps.w.org/stops-core-theme-and-plugin-updates/assets/icon-128x128.png?rev=1896941\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:91:\"https://ps.w.org/stops-core-theme-and-plugin-updates/assets/banner-1544x500.png?rev=1925992\";s:2:\"1x\";s:90:\"https://ps.w.org/stops-core-theme-and-plugin-updates/assets/banner-772x250.png?rev=1925992\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.1\";s:6:\"tested\";s:3:\"7.0\";s:12:\"requires_php\";s:3:\"5.6\";s:16:\"requires_plugins\";a:0:{}}s:33:\"jquery-updater/jquery-updater.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:28:\"w.org/plugins/jquery-updater\";s:4:\"slug\";s:14:\"jquery-updater\";s:6:\"plugin\";s:33:\"jquery-updater/jquery-updater.php\";s:11:\"new_version\";s:5:\"4.0.0\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/jquery-updater/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/jquery-updater.4.0.0.zip\";s:5:\"icons\";a:1:{s:7:\"default\";s:58:\"https://s.w.org/plugins/geopattern-icon/jquery-updater.svg\";}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.0\";s:6:\"tested\";s:3:\"7.0\";s:12:\"requires_php\";s:3:\"5.6\";s:16:\"requires_plugins\";a:0:{}}s:33:\"w3-total-cache/w3-total-cache.php\";O:8:\"stdClass\":13:{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.9.2\";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.9.2.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:\"5.3\";s:6:\"tested\";s:5:\"6.9.4\";s:12:\"requires_php\";s:5:\"7.2.5\";s:16:\"requires_plugins\";a:0:{}}s:29:\"wp-mail-smtp/wp_mail_smtp.php\";O:8:\"stdClass\":13:{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:\"4.7.1\";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.4.7.1.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=3206423\";s:2:\"1x\";s:67:\"https://ps.w.org/wp-mail-smtp/assets/banner-772x250.png?rev=3206423\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.5\";s:6:\"tested\";s:5:\"6.9.4\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}}s:24:\"wordpress-seo/wp-seo.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:27:\"w.org/plugins/wordpress-seo\";s:4:\"slug\";s:13:\"wordpress-seo\";s:6:\"plugin\";s:24:\"wordpress-seo/wp-seo.php\";s:11:\"new_version\";s:4:\"27.2\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/wordpress-seo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.27.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/wordpress-seo/assets/icon-256x256.gif?rev=3419908\";s:2:\"1x\";s:66:\"https://ps.w.org/wordpress-seo/assets/icon-128x128.gif?rev=3419908\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/wordpress-seo/assets/banner-1544x500.png?rev=3257862\";s:2:\"1x\";s:68:\"https://ps.w.org/wordpress-seo/assets/banner-772x250.png?rev=3257862\";}s:11:\"banners_rtl\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/wordpress-seo/assets/banner-1544x500-rtl.png?rev=3257862\";s:2:\"1x\";s:72:\"https://ps.w.org/wordpress-seo/assets/banner-772x250-rtl.png?rev=3257862\";}s:8:\"requires\";s:3:\"6.8\";s:6:\"tested\";s:5:\"6.9.4\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}}s:34:\"advanced-custom-fields-pro/acf.php\";O:8:\"stdClass\":11:{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:5:\"6.7.2\";s:3:\"url\";s:36:\"https://www.advancedcustomfields.com\";s:6:\"tested\";s:5:\"6.9.4\";s:7:\"package\";s:0:\"\";s:5:\"icons\";a:1:{s:7:\"default\";s:64:\"https://connect.advancedcustomfields.com/assets/icon-256x256.png\";}s:7:\"banners\";a:2:{s:3:\"low\";s:66:\"https://connect.advancedcustomfields.com/assets/banner-772x250.jpg\";s:4:\"high\";s:67:\"https://connect.advancedcustomfields.com/assets/banner-1544x500.jpg\";}s:8:\"requires\";s:3:\"6.2\";s:12:\"requires_php\";s:3:\"7.4\";s:12:\"release_date\";s:8:\"20260326\";}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:1:{s:27:\"svg-support/svg-support.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/svg-support\";s:4:\"slug\";s:11:\"svg-support\";s:6:\"plugin\";s:27:\"svg-support/svg-support.php\";s:11:\"new_version\";s:6:\"2.5.14\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/svg-support/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/svg-support.2.5.14.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:56:\"https://ps.w.org/svg-support/assets/icon.svg?rev=1417738\";s:3:\"svg\";s:56:\"https://ps.w.org/svg-support/assets/icon.svg?rev=1417738\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/svg-support/assets/banner-1544x500.jpg?rev=1215377\";s:2:\"1x\";s:66:\"https://ps.w.org/svg-support/assets/banner-772x250.jpg?rev=1215377\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.8\";}}s:7:\"checked\";a:12:{s:34:\"advanced-custom-fields-pro/acf.php\";s:5:\"6.1.7\";s:19:\"akismet/akismet.php\";s:3:\"5.3\";s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";s:4:\"7.79\";s:91:\"all-in-one-wp-migration-unlimited-extension/all-in-one-wp-migration-unlimited-extension.php\";s:4:\"2.54\";s:93:\"auto-image-attributes-from-filename-with-bulk-updater/iaff_image-attributes-from-filename.php\";s:5:\"4.3.1\";s:44:\"stops-core-theme-and-plugin-updates/main.php\";s:6:\"9.0.17\";s:33:\"jquery-updater/jquery-updater.php\";s:7:\"3.7.1.1\";s:27:\"svg-support/svg-support.php\";s:6:\"2.5.14\";s:33:\"w3-total-cache/w3-total-cache.php\";s:5:\"2.5.0\";s:29:\"wp-mail-smtp/wp_mail_smtp.php\";s:6:\"3.10.0\";s:24:\"wordpress-seo/wp-seo.php\";s:4:\"21.4\";s:40:\"wordpress-seo-premium/wp-seo-premium.php\";s:4:\"20.8\";}}','off'),(63334,'can_compress_scripts','0','auto'),(53975,'ideastocode_module_settings','a:0:{}','auto'),(53976,'itc_svg_upload_settings','a:3:{s:3:\"svg\";i:1;s:4:\"webp\";i:1;s:3:\"ico\";i:1;}','auto'),(54022,'bodhi_svgs_settings','a:3:{s:22:\"sanitize_svg_front_end\";s:2:\"on\";s:8:\"restrict\";a:1:{i:0;s:13:\"administrator\";}s:24:\"sanitize_on_upload_roles\";a:0:{}}','auto'),(24873,'_transient_wp_styles_for_blocks','a:2:{s:4:\"hash\";s:32:\"08a863f7f4395bf9a71ffe117c52266b\";s:6:\"blocks\";a:5:{s:11:\"core/button\";s:0:\"\";s:14:\"core/site-logo\";s:0:\"\";s:18:\"core/post-template\";s:120:\":where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}\";s:12:\"core/columns\";s:102:\":where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}\";s:14:\"core/pullquote\";s:69:\":root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}\";}}','on');
/*!40000 ALTER TABLE `wp6k_options` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp6k_postmeta`
--
DROP TABLE IF EXISTS `wp6k_postmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp6k_postmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`post_id` bigint(20) unsigned NOT NULL DEFAULT 0,
`meta_key` varchar(255) DEFAULT NULL,
`meta_value` longtext DEFAULT NULL,
PRIMARY KEY (`meta_id`),
KEY `post_id` (`post_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=3762 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp6k_postmeta`
--
LOCK TABLES `wp6k_postmeta` WRITE;
/*!40000 ALTER TABLE `wp6k_postmeta` DISABLE KEYS */;
INSERT INTO `wp6k_postmeta` VALUES (422,55,'_form_slogan','field_6531c538bb5fd'),(423,55,'ftr_text','Всі права захищені'),(424,55,'_ftr_text','field_6538ded69ca5a'),(541,86,'_wp_attached_file','2024/04/Frame-45.png'),(15,11,'_edit_lock','1774870312:1'),(16,11,'_edit_last','1'),(17,11,'_yoast_indexnow_last_ping','1758626831'),(18,11,'_yoast_wpseo_focuskeywords','[]'),(19,11,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(20,11,'_yoast_wpseo_estimated-reading-time-minutes','0'),(21,11,'_yoast_wpseo_wordproof_timestamp',''),(22,13,'_edit_lock','1774871573:1'),(23,13,'_edit_last','1'),(24,13,'_yoast_indexnow_last_ping','1740670215'),(25,13,'_yoast_wpseo_focuskeywords','[]'),(26,13,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(27,13,'_yoast_wpseo_estimated-reading-time-minutes','0'),(28,13,'_yoast_wpseo_wordproof_timestamp',''),(426,58,'_edit_lock','1713384185:1'),(425,58,'_edit_last','1'),(32,11,'_wp_page_template','index.php'),(33,13,'_wp_page_template','contacts.php'),(34,13,'_yoast_post_redirect_info','a:4:{s:6:\"origin\";s:48:\"%d0%b3%d0%be%d0%bb%d0%be%d0%b2%d0%bd%d0%b0/about\";s:6:\"target\";s:5:\"about\";s:4:\"type\";i:301;s:6:\"format\";s:5:\"plain\";}'),(35,16,'_edit_last','1'),(36,16,'_edit_lock','1698227967:1'),(37,11,'hdr_tel','0630254440'),(38,11,'_hdr_tel','field_6531b971a7cd7'),(39,11,'ftr_fb','https://www.facebook.com/IT.SmartGT'),(40,11,'_ftr_fb','field_6531b9d5a7cd8'),(41,11,'ftr_inst','https://instagram.com/smart__gt?igshid=NGVhN2U2NjQ0Yg%3D%3D&utm_source=qr'),(42,11,'_ftr_inst','field_6531ba80a7cd9'),(43,11,'ftr_tg','https://t.me/smartgt_bot'),(44,11,'_ftr_tg','field_6531bab1a7cda'),(45,12,'hdr_tel','0630254440'),(46,12,'_hdr_tel','field_6531b971a7cd7'),(47,12,'ftr_fb',''),(48,12,'_ftr_fb','field_6531b9d5a7cd8'),(49,12,'ftr_inst',''),(50,12,'_ftr_inst','field_6531ba80a7cd9'),(51,12,'ftr_tg',''),(52,12,'_ftr_tg','field_6531bab1a7cda'),(53,21,'_edit_last','1'),(54,21,'_edit_lock','1758625229:1'),(55,25,'_wp_attached_file','2023/10/cover.jpg'),(56,25,'iaff_wp_attachment_original_post_title','cover'),(57,25,'_wp_attachment_image_alt','cover'),(58,25,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1400;s:6:\"height\";i:1400;s:4:\"file\";s:17:\"2023/10/cover.jpg\";s:8:\"filesize\";i:1206847;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"cover-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11838;}s:5:\"large\";a:5:{s:4:\"file\";s:19:\"cover-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:100165;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"cover-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4435;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:17:\"cover-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56631;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(59,26,'_wp_attached_file','2023/10/cover-1.jpg'),(60,26,'iaff_wp_attachment_original_post_title','cover'),(61,26,'_wp_attachment_image_alt','cover 1'),(62,26,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1400;s:6:\"height\";i:1400;s:4:\"file\";s:19:\"2023/10/cover-1.jpg\";s:8:\"filesize\";i:217183;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"cover-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13166;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"cover-1-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:123476;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"cover-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4639;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"cover-1-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:72127;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(63,27,'_wp_attached_file','2023/10/slide1.png'),(64,27,'iaff_wp_attachment_original_post_title','slide1'),(65,27,'_wp_attachment_image_alt','slide1'),(66,27,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:405;s:6:\"height\";i:410;s:4:\"file\";s:18:\"2023/10/slide1.png\";s:8:\"filesize\";i:249866;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"slide1-296x300.png\";s:5:\"width\";i:296;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:152107;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"slide1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:47490;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(67,28,'_wp_attached_file','2023/10/chats-bg.jpg'),(68,28,'iaff_wp_attachment_original_post_title','chats-bg'),(69,28,'_wp_attachment_image_alt','chats bg'),(70,28,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:760;s:6:\"height\";i:425;s:4:\"file\";s:20:\"2023/10/chats-bg.jpg\";s:8:\"filesize\";i:95704;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"chats-bg-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8248;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"chats-bg-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5734;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(71,29,'_wp_attached_file','2023/10/about2.png'),(72,29,'iaff_wp_attachment_original_post_title','about2'),(73,29,'_wp_attachment_image_alt','about2'),(74,29,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:540;s:6:\"height\";i:309;s:4:\"file\";s:18:\"2023/10/about2.png\";s:8:\"filesize\";i:219704;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"about2-300x172.png\";s:5:\"width\";i:300;s:6:\"height\";i:172;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:65394;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"about2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26901;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(75,11,'services_0_service_title','консалтинг'),(76,11,'_services_0_service_title','field_6531be7dcefff'),(77,11,'services_0_service_bg','136'),(78,11,'_services_0_service_bg','field_6531beabcf000'),(79,11,'services_1_service_title','сайти'),(80,11,'_services_1_service_title','field_6531be7dcefff'),(81,11,'services_1_service_bg','129'),(82,11,'_services_1_service_bg','field_6531beabcf000'),(83,11,'services_2_service_title','інтернет-магазини + ERP + CRM'),(84,11,'_services_2_service_title','field_6531be7dcefff'),(85,11,'services_2_service_bg','127'),(86,11,'_services_2_service_bg','field_6531beabcf000'),(87,11,'services_3_service_title','SMM'),(88,11,'_services_3_service_title','field_6531be7dcefff'),(89,11,'services_3_service_bg','131'),(90,11,'_services_3_service_bg','field_6531beabcf000'),(91,11,'services_4_service_title','дизайн'),(92,11,'_services_4_service_title','field_6531be7dcefff'),(93,11,'services_4_service_bg','132'),(94,11,'_services_4_service_bg','field_6531beabcf000'),(95,11,'services','6'),(96,11,'_services','field_6531be62ceffe'),(97,30,'hdr_tel','0630254440'),(98,30,'_hdr_tel','field_6531b971a7cd7'),(99,30,'ftr_fb',''),(100,30,'_ftr_fb','field_6531b9d5a7cd8'),(101,30,'ftr_inst',''),(102,30,'_ftr_inst','field_6531ba80a7cd9'),(103,30,'ftr_tg',''),(104,30,'_ftr_tg','field_6531bab1a7cda'),(105,30,'services_0_service_title','сайти'),(106,30,'_services_0_service_title','field_6531be7dcefff'),(107,30,'services_0_service_bg','25'),(108,30,'_services_0_service_bg','field_6531beabcf000'),(109,30,'services_1_service_title','інтернет-магазини + ERP + CRM'),(110,30,'_services_1_service_title','field_6531be7dcefff'),(111,30,'services_1_service_bg','26'),(112,30,'_services_1_service_bg','field_6531beabcf000'),(113,30,'services_2_service_title','SMM'),(114,30,'_services_2_service_title','field_6531be7dcefff'),(115,30,'services_2_service_bg','27'),(116,30,'_services_2_service_bg','field_6531beabcf000'),(117,30,'services_3_service_title','дизайн'),(118,30,'_services_3_service_title','field_6531be7dcefff'),(119,30,'services_3_service_bg','28'),(120,30,'_services_3_service_bg','field_6531beabcf000'),(121,30,'services_4_service_title','чат-боти'),(122,30,'_services_4_service_title','field_6531be7dcefff'),(123,30,'services_4_service_bg','29'),(124,30,'_services_4_service_bg','field_6531beabcf000'),(125,30,'services','5'),(126,30,'_services','field_6531be62ceffe'),(127,31,'hdr_tel','0630254440'),(128,31,'_hdr_tel','field_6531b971a7cd7'),(129,31,'ftr_fb',''),(130,31,'_ftr_fb','field_6531b9d5a7cd8'),(131,31,'ftr_inst',''),(132,31,'_ftr_inst','field_6531ba80a7cd9'),(133,31,'ftr_tg',''),(134,31,'_ftr_tg','field_6531bab1a7cda'),(135,31,'services_0_service_title','сайти'),(136,31,'_services_0_service_title','field_6531be7dcefff'),(137,31,'services_0_service_bg','25'),(138,31,'_services_0_service_bg','field_6531beabcf000'),(139,31,'services_1_service_title','інтернет-магазини + ERP + CRM'),(140,31,'_services_1_service_title','field_6531be7dcefff'),(141,31,'services_1_service_bg','26'),(142,31,'_services_1_service_bg','field_6531beabcf000'),(143,31,'services_2_service_title','SMM'),(144,31,'_services_2_service_title','field_6531be7dcefff'),(145,31,'services_2_service_bg','27'),(146,31,'_services_2_service_bg','field_6531beabcf000'),(147,31,'services_3_service_title','дизайн'),(148,31,'_services_3_service_title','field_6531be7dcefff'),(149,31,'services_3_service_bg','28'),(150,31,'_services_3_service_bg','field_6531beabcf000'),(151,31,'services_4_service_title','чат-боти'),(152,31,'_services_4_service_title','field_6531be7dcefff'),(153,31,'services_4_service_bg','29'),(154,31,'_services_4_service_bg','field_6531beabcf000'),(155,31,'services','5'),(156,31,'_services','field_6531be62ceffe'),(157,32,'_edit_last','1'),(158,32,'_edit_lock','1712835685:1'),(159,34,'_wp_attached_file','2023/10/order-some-img.png'),(160,34,'iaff_wp_attachment_original_post_title','order-some-img'),(161,34,'_wp_attachment_image_alt','order some img'),(162,34,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:625;s:6:\"height\";i:645;s:4:\"file\";s:26:\"2023/10/order-some-img.png\";s:8:\"filesize\";i:412773;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"order-some-img-291x300.png\";s:5:\"width\";i:291;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:99452;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"order-some-img-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31080;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(163,11,'page_img',''),(164,11,'_page_img','field_6531c3fef2244'),(165,35,'hdr_tel','0630254440'),(166,35,'_hdr_tel','field_6531b971a7cd7'),(167,35,'ftr_fb',''),(168,35,'_ftr_fb','field_6531b9d5a7cd8'),(169,35,'ftr_inst',''),(170,35,'_ftr_inst','field_6531ba80a7cd9'),(171,35,'ftr_tg',''),(172,35,'_ftr_tg','field_6531bab1a7cda'),(173,35,'services_0_service_title','сайти'),(174,35,'_services_0_service_title','field_6531be7dcefff'),(175,35,'services_0_service_bg','25'),(176,35,'_services_0_service_bg','field_6531beabcf000'),(177,35,'services_1_service_title','інтернет-магазини + ERP + CRM'),(178,35,'_services_1_service_title','field_6531be7dcefff'),(179,35,'services_1_service_bg','26'),(180,35,'_services_1_service_bg','field_6531beabcf000'),(181,35,'services_2_service_title','SMM'),(182,35,'_services_2_service_title','field_6531be7dcefff'),(183,35,'services_2_service_bg','27'),(184,35,'_services_2_service_bg','field_6531beabcf000'),(185,35,'services_3_service_title','дизайн'),(186,35,'_services_3_service_title','field_6531be7dcefff'),(187,35,'services_3_service_bg','28'),(188,35,'_services_3_service_bg','field_6531beabcf000'),(189,35,'services_4_service_title','чат-боти'),(190,35,'_services_4_service_title','field_6531be7dcefff'),(191,35,'services_4_service_bg','29'),(192,35,'_services_4_service_bg','field_6531beabcf000'),(193,35,'services','5'),(194,35,'_services','field_6531be62ceffe'),(195,35,'page_img','34'),(196,35,'_page_img','field_6531c3fef2244'),(197,36,'_edit_last','1'),(198,36,'_edit_lock','1697760670:1'),(199,11,'masters_slogan','ВАШ КЛЮЧ ДО СУЧАСНОГО БІЗНЕСУ'),(200,11,'_masters_slogan','field_6531c4b1bb5fc'),(201,11,'form_slogan','Ми з вами зв’яжемося і візьмемо все у свої руки'),(202,11,'_form_slogan','field_6531c538bb5fd'),(203,35,'masters_slogan','ВАШ КЛЮЧ ДО СУЧАСНОГО БІЗНЕСУ'),(204,35,'_masters_slogan','field_6531c4b1bb5fc'),(205,35,'form_slogan','Ми з вами зв’яжемося і візьмемо все у свої руки'),(206,35,'_form_slogan','field_6531c538bb5fd'),(207,39,'hdr_tel','0630254440'),(208,39,'_hdr_tel','field_6531b971a7cd7'),(209,39,'ftr_fb','123'),(210,39,'_ftr_fb','field_6531b9d5a7cd8'),(211,39,'ftr_inst','456565'),(212,39,'_ftr_inst','field_6531ba80a7cd9'),(213,39,'ftr_tg','676787'),(214,39,'_ftr_tg','field_6531bab1a7cda'),(215,39,'services_0_service_title','сайти'),(216,39,'_services_0_service_title','field_6531be7dcefff'),(217,39,'services_0_service_bg','25'),(218,39,'_services_0_service_bg','field_6531beabcf000'),(219,39,'services_1_service_title','інтернет-магазини + ERP + CRM'),(220,39,'_services_1_service_title','field_6531be7dcefff'),(221,39,'services_1_service_bg','26'),(222,39,'_services_1_service_bg','field_6531beabcf000'),(223,39,'services_2_service_title','SMM'),(224,39,'_services_2_service_title','field_6531be7dcefff'),(225,39,'services_2_service_bg','27'),(226,39,'_services_2_service_bg','field_6531beabcf000'),(227,39,'services_3_service_title','дизайн'),(228,39,'_services_3_service_title','field_6531be7dcefff'),(229,39,'services_3_service_bg','28'),(230,39,'_services_3_service_bg','field_6531beabcf000'),(231,39,'services_4_service_title','чат-боти'),(232,39,'_services_4_service_title','field_6531be7dcefff'),(233,39,'services_4_service_bg','29'),(234,39,'_services_4_service_bg','field_6531beabcf000'),(235,39,'services','5'),(236,39,'_services','field_6531be62ceffe'),(237,39,'page_img','34'),(238,39,'_page_img','field_6531c3fef2244'),(239,39,'masters_slogan','ВАШ КЛЮЧ ДО СУЧАСНОГО БІЗНЕСУ'),(240,39,'_masters_slogan','field_6531c4b1bb5fc'),(241,39,'form_slogan','Ми з вами зв’яжемося і візьмемо все у свої руки'),(242,39,'_form_slogan','field_6531c538bb5fd'),(243,40,'_edit_last','1'),(244,40,'_edit_lock','1698088285:1'),(245,44,'_wp_attached_file','2023/10/about1.png'),(246,44,'iaff_wp_attachment_original_post_title','about1'),(247,44,'_wp_attachment_image_alt','about1'),(248,44,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:540;s:6:\"height\";i:181;s:4:\"file\";s:18:\"2023/10/about1.png\";s:8:\"filesize\";i:185461;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"about1-300x101.png\";s:5:\"width\";i:300;s:6:\"height\";i:101;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:54445;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"about1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:35422;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(249,45,'_wp_attached_file','2023/10/about2-1.png'),(250,45,'iaff_wp_attachment_original_post_title','about2'),(251,45,'_wp_attachment_image_alt','about2 1'),(252,45,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:540;s:6:\"height\";i:309;s:4:\"file\";s:20:\"2023/10/about2-1.png\";s:8:\"filesize\";i:219704;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"about2-1-300x172.png\";s:5:\"width\";i:300;s:6:\"height\";i:172;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:65394;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"about2-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26901;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(253,13,'about_text','Ми - ваші партнери у цифровому успіху, об\'єднуючи технології та креативність для зростання вашого бізнесу'),(254,13,'_about_text','field_6531cb11816a7'),(255,13,'about_img1','134'),(256,13,'_about_img1','field_6531cb5d816a8'),(257,13,'about_img2','45'),(258,13,'_about_img2','field_6531cb8f816a9'),(259,13,'page_img',''),(260,13,'_page_img','field_6531c3fef2244'),(261,46,'about_text','Ми - ваші партнери у цифровому успіху, об\'єднуючи технології та креативність для зростання вашого бізнесу'),(262,46,'_about_text','field_6531cb11816a7'),(263,46,'about_img1','134'),(264,46,'_about_img1','field_6531cb5d816a8'),(265,46,'about_img2','45'),(266,46,'_about_img2','field_6531cb8f816a9'),(267,46,'page_img',''),(268,46,'_page_img','field_6531c3fef2244'),(269,47,'hdr_tel','0630254440'),(270,47,'_hdr_tel','field_6531b971a7cd7'),(271,47,'ftr_fb','https://www.facebook.com/IT.SmartGT'),(272,47,'_ftr_fb','field_6531b9d5a7cd8'),(273,47,'ftr_inst','https://instagram.com/smart__gt?igshid=NGVhN2U2NjQ0Yg%3D%3D&utm_source=qr'),(274,47,'_ftr_inst','field_6531ba80a7cd9'),(275,47,'ftr_tg','https://t.me/smartgt_bot'),(276,47,'_ftr_tg','field_6531bab1a7cda'),(277,47,'services_0_service_title','сайти'),(278,47,'_services_0_service_title','field_6531be7dcefff'),(279,47,'services_0_service_bg','25'),(280,47,'_services_0_service_bg','field_6531beabcf000'),(281,47,'services_1_service_title','інтернет-магазини + ERP + CRM'),(282,47,'_services_1_service_title','field_6531be7dcefff'),(283,47,'services_1_service_bg','26'),(284,47,'_services_1_service_bg','field_6531beabcf000'),(285,47,'services_2_service_title','SMM'),(286,47,'_services_2_service_title','field_6531be7dcefff'),(287,47,'services_2_service_bg','27'),(288,47,'_services_2_service_bg','field_6531beabcf000'),(289,47,'services_3_service_title','дизайн'),(290,47,'_services_3_service_title','field_6531be7dcefff'),(291,47,'services_3_service_bg','28'),(292,47,'_services_3_service_bg','field_6531beabcf000'),(293,47,'services_4_service_title','чат-боти'),(294,47,'_services_4_service_title','field_6531be7dcefff'),(295,47,'services_4_service_bg','29'),(296,47,'_services_4_service_bg','field_6531beabcf000'),(297,47,'services','5'),(298,47,'_services','field_6531be62ceffe'),(299,47,'page_img','34'),(300,47,'_page_img','field_6531c3fef2244'),(301,47,'masters_slogan','ВАШ КЛЮЧ ДО СУЧАСНОГО БІЗНЕСУ'),(302,47,'_masters_slogan','field_6531c4b1bb5fc'),(303,47,'form_slogan','Ми з вами зв’яжемося і візьмемо все у свої руки'),(304,47,'_form_slogan','field_6531c538bb5fd'),(305,11,'ftr_text','Всі права захищені'),(306,11,'_ftr_text','field_6538ded69ca5a'),(307,47,'ftr_text','Всі права захищені'),(308,47,'_ftr_text','field_6538ded69ca5a'),(318,52,'_ftr_tg','field_6531bab1a7cda'),(319,52,'services_0_service_title','сайти'),(320,52,'_services_0_service_title','field_6531be7dcefff'),(321,52,'services_0_service_bg','25'),(322,52,'_services_0_service_bg','field_6531beabcf000'),(323,52,'services_1_service_title','інтернет-магазини + ERP + CRM'),(324,52,'_services_1_service_title','field_6531be7dcefff'),(325,52,'services_1_service_bg','26'),(326,52,'_services_1_service_bg','field_6531beabcf000'),(327,52,'services_2_service_title','SMM'),(328,52,'_services_2_service_title','field_6531be7dcefff'),(329,52,'services_2_service_bg','27'),(330,52,'_services_2_service_bg','field_6531beabcf000'),(331,52,'services_3_service_title','дизайн'),(332,52,'_services_3_service_title','field_6531be7dcefff'),(333,52,'services_3_service_bg','28'),(334,52,'_services_3_service_bg','field_6531beabcf000'),(335,52,'services_4_service_title','чат-боти'),(336,52,'_services_4_service_title','field_6531be7dcefff'),(337,52,'services_4_service_bg','29'),(338,52,'_services_4_service_bg','field_6531beabcf000'),(339,52,'services','5'),(340,52,'_services','field_6531be62ceffe'),(341,52,'page_img','34'),(342,52,'_page_img','field_6531c3fef2244'),(343,52,'masters_slogan','ВАШ КЛЮЧ ДО СУЧАСНОГО БІЗНЕСУ'),(344,52,'_masters_slogan','field_6531c4b1bb5fc'),(345,52,'form_slogan','Ми з вами зв’яжемося і візьмемо все у свої руки'),(346,52,'_form_slogan','field_6531c538bb5fd'),(347,52,'ftr_text','Всі права захищені'),(348,52,'_ftr_text','field_6538ded69ca5a'),(349,54,'hdr_tel','0630254440'),(350,54,'_hdr_tel','field_6531b971a7cd7'),(351,54,'ftr_fb','https://www.facebook.com/IT.SmartGT'),(352,54,'_ftr_fb','field_6531b9d5a7cd8'),(353,54,'ftr_inst','https://instagram.com/smart__gt?igshid=NGVhN2U2NjQ0Yg%3D%3D&utm_source=qr'),(354,54,'_ftr_inst','field_6531ba80a7cd9'),(355,54,'ftr_tg','https://t.me/smartgt_bot'),(356,54,'_ftr_tg','field_6531bab1a7cda'),(357,54,'services_0_service_title','сайти'),(358,54,'_services_0_service_title','field_6531be7dcefff'),(359,54,'services_0_service_bg','25'),(360,54,'_services_0_service_bg','field_6531beabcf000'),(361,54,'services_1_service_title','інтернет-магазини + ERP + CRM'),(362,54,'_services_1_service_title','field_6531be7dcefff'),(363,54,'services_1_service_bg','26'),(364,54,'_services_1_service_bg','field_6531beabcf000'),(365,54,'services_2_service_title','SMM'),(366,54,'_services_2_service_title','field_6531be7dcefff'),(367,54,'services_2_service_bg','27'),(368,54,'_services_2_service_bg','field_6531beabcf000'),(369,54,'services_3_service_title','дизайн'),(370,54,'_services_3_service_title','field_6531be7dcefff'),(371,54,'services_3_service_bg','28'),(372,54,'_services_3_service_bg','field_6531beabcf000'),(373,54,'services_4_service_title','чат-боти'),(374,54,'_services_4_service_title','field_6531be7dcefff'),(375,54,'services_4_service_bg','29'),(376,54,'_services_4_service_bg','field_6531beabcf000'),(377,54,'services','5'),(378,54,'_services','field_6531be62ceffe'),(379,54,'page_img','34'),(380,54,'_page_img','field_6531c3fef2244'),(381,54,'masters_slogan','ВАШ КЛЮЧ ДО СУЧАСНОГО БІЗНЕСУ'),(382,54,'_masters_slogan','field_6531c4b1bb5fc'),(383,54,'form_slogan','Ми з вами зв’яжемося і візьмемо все у свої руки'),(384,54,'_form_slogan','field_6531c538bb5fd'),(385,54,'ftr_text','Всі права захищені'),(386,54,'_ftr_text','field_6538ded69ca5a'),(387,55,'hdr_tel','0630254440'),(388,55,'_hdr_tel','field_6531b971a7cd7'),(389,55,'ftr_fb','https://www.facebook.com/IT.SmartGT'),(390,55,'_ftr_fb','field_6531b9d5a7cd8'),(391,55,'ftr_inst','https://instagram.com/smart__gt?igshid=NGVhN2U2NjQ0Yg%3D%3D&utm_source=qr'),(392,55,'_ftr_inst','field_6531ba80a7cd9'),(393,55,'ftr_tg','https://t.me/smartgt_bot'),(394,55,'_ftr_tg','field_6531bab1a7cda'),(395,55,'services_0_service_title','сайти'),(396,55,'_services_0_service_title','field_6531be7dcefff'),(397,55,'services_0_service_bg','25'),(398,55,'_services_0_service_bg','field_6531beabcf000'),(399,55,'services_1_service_title','інтернет-магазини + ERP + CRM'),(400,55,'_services_1_service_title','field_6531be7dcefff'),(401,55,'services_1_service_bg','26'),(402,55,'_services_1_service_bg','field_6531beabcf000'),(403,55,'services_2_service_title','SMM'),(404,55,'_services_2_service_title','field_6531be7dcefff'),(405,55,'services_2_service_bg','27'),(406,55,'_services_2_service_bg','field_6531beabcf000'),(407,55,'services_3_service_title','дизайн'),(408,55,'_services_3_service_title','field_6531be7dcefff'),(409,55,'services_3_service_bg','28'),(410,55,'_services_3_service_bg','field_6531beabcf000'),(411,55,'services_4_service_title','чат-боти'),(412,55,'_services_4_service_title','field_6531be7dcefff'),(413,55,'services_4_service_bg','29'),(414,55,'_services_4_service_bg','field_6531beabcf000'),(415,55,'services','5'),(416,55,'_services','field_6531be62ceffe'),(417,55,'page_img','34'),(418,55,'_page_img','field_6531c3fef2244'),(419,55,'masters_slogan','ВАШ КЛЮЧ ДО СУЧАСНОГО БІЗНЕСУ'),(420,55,'_masters_slogan','field_6531c4b1bb5fc'),(421,55,'form_slogan','Ми з вами зв’яжемося і візьмемо все у свої руки'),(311,52,'hdr_tel','0630254440'),(312,52,'_hdr_tel','field_6531b971a7cd7'),(313,52,'ftr_fb','https://www.facebook.com/IT.SmartGT'),(314,52,'_ftr_fb','field_6531b9d5a7cd8'),(315,52,'ftr_inst','https://instagram.com/smart__gt?igshid=NGVhN2U2NjQ0Yg%3D%3D&utm_source=qr'),(316,52,'_ftr_inst','field_6531ba80a7cd9'),(317,52,'ftr_tg','https://t.me/SmartGT'),(533,84,'_wp_attached_file','2024/04/logo-svitpro-h-1.png'),(534,84,'iaff_wp_attachment_original_post_title','logo-svitpro-h 1'),(535,84,'_wp_attachment_image_alt','logo svitpro h 1'),(536,84,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:131;s:6:\"height\";i:14;s:4:\"file\";s:28:\"2024/04/logo-svitpro-h-1.png\";s:8:\"filesize\";i:1683;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:{}}}'),(431,66,'_wp_attached_file','2024/04/Frame-42-1.png'),(432,66,'iaff_wp_attachment_original_post_title','Frame 42'),(433,66,'_wp_attachment_image_alt','Frame 42'),(434,66,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:172;s:6:\"height\";i:61;s:4:\"file\";s:22:\"2024/04/Frame-42-1.png\";s:8:\"filesize\";i:8044;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"Frame-42-1-150x61.png\";s:5:\"width\";i:150;s:6:\"height\";i:61;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8108;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(435,67,'_wp_attached_file','2024/04/snapedit_1710259007552-1.png'),(436,67,'iaff_wp_attachment_original_post_title','snapedit_1710259007552 1'),(437,67,'_wp_attachment_image_alt','snapedit 1710259007552 1'),(438,67,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:116;s:6:\"height\";i:28;s:4:\"file\";s:36:\"2024/04/snapedit_1710259007552-1.png\";s:8:\"filesize\";i:5662;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:{}}}'),(439,11,'trust_first','195'),(440,11,'_trust_first','field_6617cb724f2b5'),(441,11,'trust_second','207'),(442,11,'_trust_second','field_6617cba54f2b7'),(443,11,'trust_third','197'),(444,11,'_trust_third','field_6617cbb84f2b9'),(445,11,'trust_fourth','198'),(446,11,'_trust_fourth','field_6617cbc54f2ba'),(447,11,'trust_fifth','196'),(448,11,'_trust_fifth','field_6617cbd94f2bb'),(449,11,'trust_sixth','203'),(450,11,'_trust_sixth','field_6617cbe34f2bc'),(451,68,'hdr_tel','0630254440'),(452,68,'_hdr_tel','field_6531b971a7cd7'),(453,68,'ftr_fb','https://www.facebook.com/IT.SmartGT'),(454,68,'_ftr_fb','field_6531b9d5a7cd8'),(455,68,'ftr_inst','https://instagram.com/smart__gt?igshid=NGVhN2U2NjQ0Yg%3D%3D&utm_source=qr'),(456,68,'_ftr_inst','field_6531ba80a7cd9'),(457,68,'ftr_tg','https://t.me/smartgt_bot'),(458,68,'_ftr_tg','field_6531bab1a7cda'),(459,68,'services_0_service_title','сайти'),(460,68,'_services_0_service_title','field_6531be7dcefff'),(461,68,'services_0_service_bg','25'),(462,68,'_services_0_service_bg','field_6531beabcf000'),(463,68,'services_1_service_title','інтернет-магазини + ERP + CRM'),(464,68,'_services_1_service_title','field_6531be7dcefff'),(465,68,'services_1_service_bg','26'),(466,68,'_services_1_service_bg','field_6531beabcf000'),(467,68,'services_2_service_title','SMM'),(468,68,'_services_2_service_title','field_6531be7dcefff'),(469,68,'services_2_service_bg','27'),(470,68,'_services_2_service_bg','field_6531beabcf000'),(471,68,'services_3_service_title','дизайн'),(472,68,'_services_3_service_title','field_6531be7dcefff'),(473,68,'services_3_service_bg','28'),(474,68,'_services_3_service_bg','field_6531beabcf000'),(475,68,'services_4_service_title','чат-боти'),(476,68,'_services_4_service_title','field_6531be7dcefff'),(477,68,'services_4_service_bg','29'),(478,68,'_services_4_service_bg','field_6531beabcf000'),(479,68,'services','5'),(480,68,'_services','field_6531be62ceffe'),(481,68,'page_img','34'),(482,68,'_page_img','field_6531c3fef2244'),(483,68,'masters_slogan','ВАШ КЛЮЧ ДО СУЧАСНОГО БІЗНЕСУ'),(484,68,'_masters_slogan','field_6531c4b1bb5fc'),(485,68,'form_slogan','Ми з вами зв’яжемося і візьмемо все у свої руки'),(486,68,'_form_slogan','field_6531c538bb5fd'),(487,68,'ftr_text','Всі права захищені'),(488,68,'_ftr_text','field_6538ded69ca5a'),(489,68,'trust_first','67'),(490,68,'_trust_first','field_6617cb724f2b5'),(491,68,'trust_second','66'),(492,68,'_trust_second','field_6617cba54f2b7'),(493,68,'trust_third',''),(494,68,'_trust_third','field_6617cbb84f2b9'),(495,68,'trust_fourth',''),(496,68,'_trust_fourth','field_6617cbc54f2ba'),(497,68,'trust_fifth',''),(498,68,'_trust_fifth','field_6617cbd94f2bb'),(499,68,'trust_sixth',''),(500,68,'_trust_sixth','field_6617cbe34f2bc'),(501,76,'_wp_attached_file','2024/04/logo-1-1.png'),(502,76,'iaff_wp_attachment_original_post_title','logo (1) 1'),(503,76,'_wp_attachment_image_alt','logo (1) 1'),(504,76,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:80;s:6:\"height\";i:25;s:4:\"file\";s:20:\"2024/04/logo-1-1.png\";s:8:\"filesize\";i:1083;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:{}}}'),(505,77,'_wp_attached_file','2024/04/image-5.png'),(506,77,'iaff_wp_attachment_original_post_title','image 5'),(507,77,'_wp_attachment_image_alt','image 5'),(508,77,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:96;s:6:\"height\";i:51;s:4:\"file\";s:19:\"2024/04/image-5.png\";s:8:\"filesize\";i:8208;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:{}}}'),(509,78,'_wp_attached_file','2024/04/Frame-58.png'),(510,78,'iaff_wp_attachment_original_post_title','Frame 58'),(511,78,'_wp_attachment_image_alt','Frame 58'),(512,78,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:125;s:6:\"height\";i:54;s:4:\"file\";s:20:\"2024/04/Frame-58.png\";s:8:\"filesize\";i:3940;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:{}}}'),(513,79,'_wp_attached_file','2024/04/photo_2024-03-11_21-33-50-Photoroom-1.png'),(514,79,'iaff_wp_attachment_original_post_title','photo_2024-03-11_21-33-50-Photoroom 1'),(515,79,'_wp_attachment_image_alt','photo 2024 03 11 21 33 50 Photoroom 1'),(516,79,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:98;s:6:\"height\";i:40;s:4:\"file\";s:49:\"2024/04/photo_2024-03-11_21-33-50-Photoroom-1.png\";s:8:\"filesize\";i:4827;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:{}}}'),(517,80,'_wp_attached_file','2024/04/Frame-57.png'),(518,80,'iaff_wp_attachment_original_post_title','Frame 57'),(519,80,'_wp_attachment_image_alt','Frame 57'),(520,80,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:232;s:6:\"height\";i:61;s:4:\"file\";s:20:\"2024/04/Frame-57.png\";s:8:\"filesize\";i:4071;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"Frame-57-150x61.png\";s:5:\"width\";i:150;s:6:\"height\";i:61;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3502;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(521,81,'_wp_attached_file','2024/04/snapedit_1710258807564-depositphotos-bgremover-1.png'),(522,81,'iaff_wp_attachment_original_post_title','snapedit_1710258807564-depositphotos-bgremover 1'),(523,81,'_wp_attachment_image_alt','snapedit 1710258807564 depositphotos bgremover 1'),(524,81,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:64;s:6:\"height\";i:47;s:4:\"file\";s:60:\"2024/04/snapedit_1710258807564-depositphotos-bgremover-1.png\";s:8:\"filesize\";i:4379;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:{}}}'),(537,85,'_wp_attached_file','2024/04/Frame-49.png'),(538,85,'iaff_wp_attachment_original_post_title','Frame 49'),(539,85,'_wp_attachment_image_alt','Frame 49'),(540,85,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:70;s:6:\"height\";i:59;s:4:\"file\";s:20:\"2024/04/Frame-49.png\";s:8:\"filesize\";i:4920;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:{}}}'),(529,83,'_wp_attached_file','2024/04/Frame-47.png'),(530,83,'iaff_wp_attachment_original_post_title','Frame 47'),(531,83,'_wp_attachment_image_alt','Frame 47'),(532,83,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:135;s:6:\"height\";i:59;s:4:\"file\";s:20:\"2024/04/Frame-47.png\";s:8:\"filesize\";i:2760;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:{}}}'),(542,86,'iaff_wp_attachment_original_post_title','Frame 45'),(543,86,'_wp_attachment_image_alt','Frame 45'),(544,86,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:150;s:6:\"height\";i:59;s:4:\"file\";s:20:\"2024/04/Frame-45.png\";s:8:\"filesize\";i:4902;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:{}}}'),(545,87,'_wp_attached_file','2024/04/Frame-56.png'),(546,87,'iaff_wp_attachment_original_post_title','Frame 56'),(547,87,'_wp_attachment_image_alt','Frame 56'),(548,87,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:230;s:6:\"height\";i:59;s:4:\"file\";s:20:\"2024/04/Frame-56.png\";s:8:\"filesize\";i:4435;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"Frame-56-150x59.png\";s:5:\"width\";i:150;s:6:\"height\";i:59;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4011;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(549,88,'_wp_attached_file','2024/04/Frame-51.png'),(550,88,'iaff_wp_attachment_original_post_title','Frame 51'),(551,88,'_wp_attachment_image_alt','Frame 51'),(552,88,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:170;s:6:\"height\";i:59;s:4:\"file\";s:20:\"2024/04/Frame-51.png\";s:8:\"filesize\";i:9563;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"Frame-51-150x59.png\";s:5:\"width\";i:150;s:6:\"height\";i:59;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8515;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(553,89,'_wp_attached_file','2024/04/Frame-50.png'),(554,89,'iaff_wp_attachment_original_post_title','Frame 50'),(555,89,'_wp_attachment_image_alt','Frame 50'),(556,89,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:178;s:6:\"height\";i:67;s:4:\"file\";s:20:\"2024/04/Frame-50.png\";s:8:\"filesize\";i:5184;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"Frame-50-150x67.png\";s:5:\"width\";i:150;s:6:\"height\";i:67;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3856;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(557,90,'_wp_attached_file','2024/04/Frame-43.png'),(558,90,'iaff_wp_attachment_original_post_title','Frame 43'),(559,90,'_wp_attachment_image_alt','Frame 43'),(560,90,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:170;s:6:\"height\";i:59;s:4:\"file\";s:20:\"2024/04/Frame-43.png\";s:8:\"filesize\";i:6679;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"Frame-43-150x59.png\";s:5:\"width\";i:150;s:6:\"height\";i:59;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6189;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,91,'_wp_attached_file','2024/04/Frame-48.png'),(562,91,'iaff_wp_attachment_original_post_title','Frame 48'),(563,91,'_wp_attachment_image_alt','Frame 48'),(564,91,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:110;s:6:\"height\";i:59;s:4:\"file\";s:20:\"2024/04/Frame-48.png\";s:8:\"filesize\";i:1745;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:{}}}'),(565,92,'_wp_attached_file','2024/04/Frame-44.png'),(566,92,'iaff_wp_attachment_original_post_title','Frame 44'),(567,92,'_wp_attachment_image_alt','Frame 44'),(568,92,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:210;s:6:\"height\";i:59;s:4:\"file\";s:20:\"2024/04/Frame-44.png\";s:8:\"filesize\";i:2588;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"Frame-44-150x59.png\";s:5:\"width\";i:150;s:6:\"height\";i:59;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2157;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(569,93,'_wp_attached_file','2024/04/Frame-54.png'),(570,93,'iaff_wp_attachment_original_post_title','Frame 54'),(571,93,'_wp_attachment_image_alt','Frame 54'),(572,93,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:85;s:6:\"height\";i:59;s:4:\"file\";s:20:\"2024/04/Frame-54.png\";s:8:\"filesize\";i:4278;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:{}}}'),(573,94,'_wp_attached_file','2024/04/Frame-52.png'),(574,94,'iaff_wp_attachment_original_post_title','Frame 52'),(575,94,'_wp_attachment_image_alt','Frame 52'),(576,94,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:132;s:6:\"height\";i:61;s:4:\"file\";s:20:\"2024/04/Frame-52.png\";s:8:\"filesize\";i:5680;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:{}}}'),(577,11,'trust_seventh','216'),(578,11,'_trust_seventh','field_6617cd6d3419d'),(579,11,'trust_eighth','201'),(580,11,'_trust_eighth','field_6617cd8d3419e'),(581,11,'trust_ninth','204'),(582,11,'_trust_ninth','field_6617cdfa3419f'),(583,11,'trust_tenth','205'),(584,11,'_trust_tenth','field_6617ce3d341a1'),(585,11,'trust_eleventh','199'),(586,11,'_trust_eleventh','field_6617ce5e341a2'),(587,11,'trust_twelveth','206'),(588,11,'_trust_twelveth','field_6617ce87341a3'),(589,11,'trust_thirteenth','202'),(590,11,'_trust_thirteenth','field_6617cea3341a4'),(591,95,'hdr_tel','0630254440'),(592,95,'_hdr_tel','field_6531b971a7cd7'),(593,95,'ftr_fb','https://www.facebook.com/IT.SmartGT'),(594,95,'_ftr_fb','field_6531b9d5a7cd8'),(595,95,'ftr_inst','https://instagram.com/smart__gt?igshid=NGVhN2U2NjQ0Yg%3D%3D&utm_source=qr'),(596,95,'_ftr_inst','field_6531ba80a7cd9'),(597,95,'ftr_tg','https://t.me/smartgt_bot'),(598,95,'_ftr_tg','field_6531bab1a7cda'),(599,95,'services_0_service_title','сайти'),(600,95,'_services_0_service_title','field_6531be7dcefff'),(601,95,'services_0_service_bg','25'),(602,95,'_services_0_service_bg','field_6531beabcf000'),(603,95,'services_1_service_title','інтернет-магазини + ERP + CRM'),(604,95,'_services_1_service_title','field_6531be7dcefff'),(605,95,'services_1_service_bg','26'),(606,95,'_services_1_service_bg','field_6531beabcf000'),(607,95,'services_2_service_title','SMM'),(608,95,'_services_2_service_title','field_6531be7dcefff'),(609,95,'services_2_service_bg','27'),(610,95,'_services_2_service_bg','field_6531beabcf000'),(611,95,'services_3_service_title','дизайн'),(612,95,'_services_3_service_title','field_6531be7dcefff'),(613,95,'services_3_service_bg','28'),(614,95,'_services_3_service_bg','field_6531beabcf000'),(615,95,'services_4_service_title','чат-боти'),(616,95,'_services_4_service_title','field_6531be7dcefff'),(617,95,'services_4_service_bg','29'),(618,95,'_services_4_service_bg','field_6531beabcf000'),(619,95,'services','5'),(620,95,'_services','field_6531be62ceffe'),(621,95,'page_img','34'),(622,95,'_page_img','field_6531c3fef2244'),(623,95,'masters_slogan','ВАШ КЛЮЧ ДО СУЧАСНОГО БІЗНЕСУ'),(624,95,'_masters_slogan','field_6531c4b1bb5fc'),(625,95,'form_slogan','Ми з вами зв’яжемося і візьмемо все у свої руки'),(626,95,'_form_slogan','field_6531c538bb5fd'),(627,95,'ftr_text','Всі права захищені'),(628,95,'_ftr_text','field_6538ded69ca5a'),(629,95,'trust_first','90'),(630,95,'_trust_first','field_6617cb724f2b5'),(631,95,'trust_second','66'),(632,95,'_trust_second','field_6617cba54f2b7'),(633,95,'trust_third','89'),(634,95,'_trust_third','field_6617cbb84f2b9'),(635,95,'trust_fourth','83'),(636,95,'_trust_fourth','field_6617cbc54f2ba'),(637,95,'trust_fifth','93'),(638,95,'_trust_fifth','field_6617cbd94f2bb'),(639,95,'trust_sixth','92'),(640,95,'_trust_sixth','field_6617cbe34f2bc'),(641,95,'trust_seventh','85'),(642,95,'_trust_seventh','field_6617cd6d3419d'),(643,95,'trust_eighth','80'),(644,95,'_trust_eighth','field_6617cd8d3419e'),(645,95,'trust_ninth','86'),(646,95,'_trust_ninth','field_6617cdfa3419f'),(647,95,'trust_tenth','94'),(648,95,'_trust_tenth','field_6617ce3d341a1'),(649,95,'trust_eleventh','87'),(650,95,'_trust_eleventh','field_6617ce5e341a2'),(651,95,'trust_twelveth','88'),(652,95,'_trust_twelveth','field_6617ce87341a3'),(653,95,'trust_thirteenth','91'),(654,95,'_trust_thirteenth','field_6617cea3341a4'),(655,97,'_wp_attached_file','2024/04/Фото-2.1-1.png'),(656,97,'iaff_wp_attachment_original_post_title','Фото 2.1 (1)'),(657,97,'_wp_attachment_image_alt','Фото 2.1 (1)'),(658,97,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:625;s:6:\"height\";i:645;s:4:\"file\";s:26:\"2024/04/Фото-2.1-1.png\";s:8:\"filesize\";i:511868;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"Фото-2.1-1-291x300.png\";s:5:\"width\";i:291;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:111384;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"Фото-2.1-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32882;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(659,11,'background_image','97'),(660,11,'_background_image','field_66183a4e40966'),(661,98,'hdr_tel','0630254440'),(662,98,'_hdr_tel','field_6531b971a7cd7'),(663,98,'ftr_fb','https://www.facebook.com/IT.SmartGT'),(664,98,'_ftr_fb','field_6531b9d5a7cd8'),(665,98,'ftr_inst','https://instagram.com/smart__gt?igshid=NGVhN2U2NjQ0Yg%3D%3D&utm_source=qr'),(666,98,'_ftr_inst','field_6531ba80a7cd9'),(667,98,'ftr_tg','https://t.me/smartgt_bot'),(668,98,'_ftr_tg','field_6531bab1a7cda'),(669,98,'services_0_service_title','сайти'),(670,98,'_services_0_service_title','field_6531be7dcefff'),(671,98,'services_0_service_bg','25'),(672,98,'_services_0_service_bg','field_6531beabcf000'),(673,98,'services_1_service_title','інтернет-магазини + ERP + CRM'),(674,98,'_services_1_service_title','field_6531be7dcefff'),(675,98,'services_1_service_bg','26'),(676,98,'_services_1_service_bg','field_6531beabcf000'),(677,98,'services_2_service_title','SMM'),(678,98,'_services_2_service_title','field_6531be7dcefff'),(679,98,'services_2_service_bg','27'),(680,98,'_services_2_service_bg','field_6531beabcf000'),(681,98,'services_3_service_title','дизайн'),(682,98,'_services_3_service_title','field_6531be7dcefff'),(683,98,'services_3_service_bg','28'),(684,98,'_services_3_service_bg','field_6531beabcf000'),(685,98,'services_4_service_title','чат-боти'),(686,98,'_services_4_service_title','field_6531be7dcefff'),(687,98,'services_4_service_bg','29'),(688,98,'_services_4_service_bg','field_6531beabcf000'),(689,98,'services','5'),(690,98,'_services','field_6531be62ceffe'),(691,98,'page_img','34'),(692,98,'_page_img','field_6531c3fef2244'),(693,98,'masters_slogan','ВАШ КЛЮЧ ДО СУЧАСНОГО БІЗНЕСУ'),(694,98,'_masters_slogan','field_6531c4b1bb5fc'),(695,98,'form_slogan','Ми з вами зв’яжемося і візьмемо все у свої руки'),(696,98,'_form_slogan','field_6531c538bb5fd'),(697,98,'ftr_text','Всі права захищені'),(698,98,'_ftr_text','field_6538ded69ca5a'),(699,98,'trust_first','90'),(700,98,'_trust_first','field_6617cb724f2b5'),(701,98,'trust_second','66'),(702,98,'_trust_second','field_6617cba54f2b7'),(703,98,'trust_third','89'),(704,98,'_trust_third','field_6617cbb84f2b9'),(705,98,'trust_fourth','83'),(706,98,'_trust_fourth','field_6617cbc54f2ba'),(707,98,'trust_fifth','93'),(708,98,'_trust_fifth','field_6617cbd94f2bb'),(709,98,'trust_sixth','92'),(710,98,'_trust_sixth','field_6617cbe34f2bc'),(711,98,'trust_seventh','85'),(712,98,'_trust_seventh','field_6617cd6d3419d'),(713,98,'trust_eighth','80'),(714,98,'_trust_eighth','field_6617cd8d3419e'),(715,98,'trust_ninth','86'),(716,98,'_trust_ninth','field_6617cdfa3419f'),(717,98,'trust_tenth','94'),(718,98,'_trust_tenth','field_6617ce3d341a1'),(719,98,'trust_eleventh','87'),(720,98,'_trust_eleventh','field_6617ce5e341a2'),(721,98,'trust_twelveth','88'),(722,98,'_trust_twelveth','field_6617ce87341a3'),(723,98,'trust_thirteenth','91'),(724,98,'_trust_thirteenth','field_6617cea3341a4'),(725,98,'background_image','97'),(726,98,'_background_image','field_66183a4e40966'),(727,11,'trust_title','Нам <br> довіряють'),(728,11,'_trust_title','field_66183c379f37a'),(729,100,'hdr_tel','0630254440'),(730,100,'_hdr_tel','field_6531b971a7cd7'),(731,100,'ftr_fb','https://www.facebook.com/IT.SmartGT'),(732,100,'_ftr_fb','field_6531b9d5a7cd8'),(733,100,'ftr_inst','https://instagram.com/smart__gt?igshid=NGVhN2U2NjQ0Yg%3D%3D&utm_source=qr'),(734,100,'_ftr_inst','field_6531ba80a7cd9'),(735,100,'ftr_tg','https://t.me/smartgt_bot'),(736,100,'_ftr_tg','field_6531bab1a7cda'),(737,100,'services_0_service_title','сайти'),(738,100,'_services_0_service_title','field_6531be7dcefff'),(739,100,'services_0_service_bg','25'),(740,100,'_services_0_service_bg','field_6531beabcf000'),(741,100,'services_1_service_title','інтернет-магазини + ERP + CRM'),(742,100,'_services_1_service_title','field_6531be7dcefff'),(743,100,'services_1_service_bg','26'),(744,100,'_services_1_service_bg','field_6531beabcf000'),(745,100,'services_2_service_title','SMM'),(746,100,'_services_2_service_title','field_6531be7dcefff'),(747,100,'services_2_service_bg','27'),(748,100,'_services_2_service_bg','field_6531beabcf000'),(749,100,'services_3_service_title','дизайн'),(750,100,'_services_3_service_title','field_6531be7dcefff'),(751,100,'services_3_service_bg','28'),(752,100,'_services_3_service_bg','field_6531beabcf000'),(753,100,'services_4_service_title','чат-боти'),(754,100,'_services_4_service_title','field_6531be7dcefff'),(755,100,'services_4_service_bg','29'),(756,100,'_services_4_service_bg','field_6531beabcf000'),(757,100,'services','5'),(758,100,'_services','field_6531be62ceffe'),(759,100,'page_img',''),(760,100,'_page_img','field_6531c3fef2244'),(761,100,'masters_slogan','ВАШ КЛЮЧ ДО СУЧАСНОГО БІЗНЕСУ'),(762,100,'_masters_slogan','field_6531c4b1bb5fc'),(763,100,'form_slogan','Ми з вами зв’яжемося і візьмемо все у свої руки'),(764,100,'_form_slogan','field_6531c538bb5fd'),(765,100,'ftr_text','Всі права захищені'),(766,100,'_ftr_text','field_6538ded69ca5a'),(767,100,'trust_first','90'),(768,100,'_trust_first','field_6617cb724f2b5'),(769,100,'trust_second','66'),(770,100,'_trust_second','field_6617cba54f2b7'),(771,100,'trust_third','89'),(772,100,'_trust_third','field_6617cbb84f2b9'),(773,100,'trust_fourth','83'),(774,100,'_trust_fourth','field_6617cbc54f2ba'),(775,100,'trust_fifth','93'),(776,100,'_trust_fifth','field_6617cbd94f2bb'),(777,100,'trust_sixth','92'),(778,100,'_trust_sixth','field_6617cbe34f2bc'),(779,100,'trust_seventh','85'),(780,100,'_trust_seventh','field_6617cd6d3419d'),(781,100,'trust_eighth','80'),(782,100,'_trust_eighth','field_6617cd8d3419e'),(783,100,'trust_ninth','86'),(784,100,'_trust_ninth','field_6617cdfa3419f'),(785,100,'trust_tenth','94'),(786,100,'_trust_tenth','field_6617ce3d341a1'),(787,100,'trust_eleventh','87'),(788,100,'_trust_eleventh','field_6617ce5e341a2'),(789,100,'trust_twelveth','88'),(790,100,'_trust_twelveth','field_6617ce87341a3'),(791,100,'trust_thirteenth','91'),(792,100,'_trust_thirteenth','field_6617cea3341a4'),(793,100,'background_image','97'),(794,100,'_background_image','field_66183a4e40966'),(795,100,'trust_title','Нам довіряють'),(796,100,'_trust_title','field_66183c379f37a'),(797,101,'hdr_tel','0630254440'),(798,101,'_hdr_tel','field_6531b971a7cd7'),(799,101,'ftr_fb','https://www.facebook.com/IT.SmartGT'),(800,101,'_ftr_fb','field_6531b9d5a7cd8'),(801,101,'ftr_inst','https://instagram.com/smart__gt?igshid=NGVhN2U2NjQ0Yg%3D%3D&utm_source=qr'),(802,101,'_ftr_inst','field_6531ba80a7cd9'),(803,101,'ftr_tg','https://t.me/smartgt_bot'),(804,101,'_ftr_tg','field_6531bab1a7cda'),(805,101,'services_0_service_title','сайти'),(806,101,'_services_0_service_title','field_6531be7dcefff'),(807,101,'services_0_service_bg','25'),(808,101,'_services_0_service_bg','field_6531beabcf000'),(809,101,'services_1_service_title','інтернет-магазини + ERP + CRM'),(810,101,'_services_1_service_title','field_6531be7dcefff'),(811,101,'services_1_service_bg','26'),(812,101,'_services_1_service_bg','field_6531beabcf000'),(813,101,'services_2_service_title','SMM'),(814,101,'_services_2_service_title','field_6531be7dcefff'),(815,101,'services_2_service_bg','27'),(816,101,'_services_2_service_bg','field_6531beabcf000'),(817,101,'services_3_service_title','дизайн'),(818,101,'_services_3_service_title','field_6531be7dcefff'),(819,101,'services_3_service_bg','28'),(820,101,'_services_3_service_bg','field_6531beabcf000'),(821,101,'services_4_service_title','чат-боти'),(822,101,'_services_4_service_title','field_6531be7dcefff'),(823,101,'services_4_service_bg','29'),(824,101,'_services_4_service_bg','field_6531beabcf000'),(825,101,'services','5'),(826,101,'_services','field_6531be62ceffe'),(827,101,'page_img',''),(828,101,'_page_img','field_6531c3fef2244'),(829,101,'masters_slogan','ВАШ КЛЮЧ ДО СУЧАСНОГО БІЗНЕСУ'),(830,101,'_masters_slogan','field_6531c4b1bb5fc'),(831,101,'form_slogan','Ми з вами зв’яжемося і візьмемо все у свої руки'),(832,101,'_form_slogan','field_6531c538bb5fd'),(833,101,'ftr_text','Всі права захищені'),(834,101,'_ftr_text','field_6538ded69ca5a'),(835,101,'trust_first','90'),(836,101,'_trust_first','field_6617cb724f2b5'),(837,101,'trust_second','66'),(838,101,'_trust_second','field_6617cba54f2b7'),(839,101,'trust_third','89'),(840,101,'_trust_third','field_6617cbb84f2b9'),(841,101,'trust_fourth','83'),(842,101,'_trust_fourth','field_6617cbc54f2ba'),(843,101,'trust_fifth','93'),(844,101,'_trust_fifth','field_6617cbd94f2bb'),(845,101,'trust_sixth','92'),(846,101,'_trust_sixth','field_6617cbe34f2bc'),(847,101,'trust_seventh','85'),(848,101,'_trust_seventh','field_6617cd6d3419d'),(849,101,'trust_eighth','80'),(850,101,'_trust_eighth','field_6617cd8d3419e'),(851,101,'trust_ninth','86'),(852,101,'_trust_ninth','field_6617cdfa3419f'),(853,101,'trust_tenth','94'),(854,101,'_trust_tenth','field_6617ce3d341a1'),(855,101,'trust_eleventh','87'),(856,101,'_trust_eleventh','field_6617ce5e341a2'),(857,101,'trust_twelveth','88'),(858,101,'_trust_twelveth','field_6617ce87341a3'),(859,101,'trust_thirteenth','91'),(860,101,'_trust_thirteenth','field_6617cea3341a4'),(861,101,'background_image','97'),(862,101,'_background_image','field_66183a4e40966'),(863,101,'trust_title','Нам <br> довіряють'),(864,101,'_trust_title','field_66183c379f37a'),(865,104,'_wp_attached_file','2024/04/2_1_photoroom_1_4x.webp'),(866,104,'iaff_wp_attachment_original_post_title','_2_1_photoroom_1_4x'),(867,104,'_wp_attachment_image_alt','2 1 photoroom 1 4x'),(868,104,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1640;s:6:\"height\";i:1860;s:4:\"file\";s:31:\"2024/04/2_1_photoroom_1_4x.webp\";s:8:\"filesize\";i:160728;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"2_1_photoroom_1_4x-265x300.webp\";s:5:\"width\";i:265;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:9490;}s:5:\"large\";a:5:{s:4:\"file\";s:32:\"2_1_photoroom_1_4x-903x1024.webp\";s:5:\"width\";i:903;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:42948;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"2_1_photoroom_1_4x-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:4794;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:31:\"2_1_photoroom_1_4x-768x871.webp\";s:5:\"width\";i:768;s:6:\"height\";i:871;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:34366;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:33:\"2_1_photoroom_1_4x-1354x1536.webp\";s:5:\"width\";i:1354;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:75474;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(869,11,'background_image_2','104'),(870,11,'_background_image_2','field_661add483a8b0'),(871,105,'hdr_tel','0630254440'),(872,105,'_hdr_tel','field_6531b971a7cd7'),(873,105,'ftr_fb','https://www.facebook.com/IT.SmartGT'),(874,105,'_ftr_fb','field_6531b9d5a7cd8'),(875,105,'ftr_inst','https://instagram.com/smart__gt?igshid=NGVhN2U2NjQ0Yg%3D%3D&utm_source=qr'),(876,105,'_ftr_inst','field_6531ba80a7cd9'),(877,105,'ftr_tg','https://t.me/smartgt_bot'),(878,105,'_ftr_tg','field_6531bab1a7cda'),(879,105,'services_0_service_title','сайти'),(880,105,'_services_0_service_title','field_6531be7dcefff'),(881,105,'services_0_service_bg','25'),(882,105,'_services_0_service_bg','field_6531beabcf000'),(883,105,'services_1_service_title','інтернет-магазини + ERP + CRM'),(884,105,'_services_1_service_title','field_6531be7dcefff'),(885,105,'services_1_service_bg','26'),(886,105,'_services_1_service_bg','field_6531beabcf000'),(887,105,'services_2_service_title','SMM'),(888,105,'_services_2_service_title','field_6531be7dcefff'),(889,105,'services_2_service_bg','27'),(890,105,'_services_2_service_bg','field_6531beabcf000'),(891,105,'services_3_service_title','дизайн'),(892,105,'_services_3_service_title','field_6531be7dcefff'),(893,105,'services_3_service_bg','28'),(894,105,'_services_3_service_bg','field_6531beabcf000'),(895,105,'services_4_service_title','чат-боти'),(896,105,'_services_4_service_title','field_6531be7dcefff'),(897,105,'services_4_service_bg','29'),(898,105,'_services_4_service_bg','field_6531beabcf000'),(899,105,'services','5'),(900,105,'_services','field_6531be62ceffe'),(901,105,'page_img',''),(902,105,'_page_img','field_6531c3fef2244'),(903,105,'masters_slogan','ВАШ КЛЮЧ ДО СУЧАСНОГО БІЗНЕСУ'),(904,105,'_masters_slogan','field_6531c4b1bb5fc'),(905,105,'form_slogan','Ми з вами зв’яжемося і візьмемо все у свої руки'),(906,105,'_form_slogan','field_6531c538bb5fd'),(907,105,'ftr_text','Всі права захищені'),(908,105,'_ftr_text','field_6538ded69ca5a'),(909,105,'trust_first','90'),(910,105,'_trust_first','field_6617cb724f2b5'),(911,105,'trust_second','66'),(912,105,'_trust_second','field_6617cba54f2b7'),(913,105,'trust_third','89'),(914,105,'_trust_third','field_6617cbb84f2b9'),(915,105,'trust_fourth','83'),(916,105,'_trust_fourth','field_6617cbc54f2ba'),(917,105,'trust_fifth','93'),(918,105,'_trust_fifth','field_6617cbd94f2bb'),(919,105,'trust_sixth','92'),(920,105,'_trust_sixth','field_6617cbe34f2bc'),(921,105,'trust_seventh','85'),(922,105,'_trust_seventh','field_6617cd6d3419d'),(923,105,'trust_eighth','80'),(924,105,'_trust_eighth','field_6617cd8d3419e'),(925,105,'trust_ninth','86'),(926,105,'_trust_ninth','field_6617cdfa3419f'),(927,105,'trust_tenth','94'),(928,105,'_trust_tenth','field_6617ce3d341a1'),(929,105,'trust_eleventh','87'),(930,105,'_trust_eleventh','field_6617ce5e341a2'),(931,105,'trust_twelveth','88'),(932,105,'_trust_twelveth','field_6617ce87341a3'),(933,105,'trust_thirteenth','91'),(934,105,'_trust_thirteenth','field_6617cea3341a4'),(935,105,'background_image','97'),(936,105,'_background_image','field_66183a4e40966'),(937,105,'trust_title','Нам <br> довіряють'),(938,105,'_trust_title','field_66183c379f37a'),(939,105,'background_image_2','104'),(940,105,'_background_image_2','field_661add483a8b0'),(941,11,'trust_title_first','Нам'),(942,11,'_trust_title_first','field_66183c379f37a'),(943,11,'trust_title_second','довіряють'),(944,11,'_trust_title_second','field_661ae9631502b'),(945,107,'hdr_tel','0630254440'),(946,107,'_hdr_tel','field_6531b971a7cd7'),(947,107,'ftr_fb','https://www.facebook.com/IT.SmartGT'),(948,107,'_ftr_fb','field_6531b9d5a7cd8'),(949,107,'ftr_inst','https://instagram.com/smart__gt?igshid=NGVhN2U2NjQ0Yg%3D%3D&utm_source=qr'),(950,107,'_ftr_inst','field_6531ba80a7cd9'),(951,107,'ftr_tg','https://t.me/smartgt_bot'),(952,107,'_ftr_tg','field_6531bab1a7cda'),(953,107,'services_0_service_title','сайти'),(954,107,'_services_0_service_title','field_6531be7dcefff'),(955,107,'services_0_service_bg','25'),(956,107,'_services_0_service_bg','field_6531beabcf000'),(957,107,'services_1_service_title','інтернет-магазини + ERP + CRM'),(958,107,'_services_1_service_title','field_6531be7dcefff'),(959,107,'services_1_service_bg','26'),(960,107,'_services_1_service_bg','field_6531beabcf000'),(961,107,'services_2_service_title','SMM'),(962,107,'_services_2_service_title','field_6531be7dcefff'),(963,107,'services_2_service_bg','27'),(964,107,'_services_2_service_bg','field_6531beabcf000'),(965,107,'services_3_service_title','дизайн'),(966,107,'_services_3_service_title','field_6531be7dcefff'),(967,107,'services_3_service_bg','28'),(968,107,'_services_3_service_bg','field_6531beabcf000'),(969,107,'services_4_service_title','чат-боти'),(970,107,'_services_4_service_title','field_6531be7dcefff'),(971,107,'services_4_service_bg','29'),(972,107,'_services_4_service_bg','field_6531beabcf000'),(973,107,'services','5'),(974,107,'_services','field_6531be62ceffe'),(975,107,'page_img',''),(976,107,'_page_img','field_6531c3fef2244'),(977,107,'masters_slogan','ВАШ КЛЮЧ ДО СУЧАСНОГО БІЗНЕСУ'),(978,107,'_masters_slogan','field_6531c4b1bb5fc'),(979,107,'form_slogan','Ми з вами зв’яжемося і візьмемо все у свої руки'),(980,107,'_form_slogan','field_6531c538bb5fd'),(981,107,'ftr_text','Всі права захищені'),(982,107,'_ftr_text','field_6538ded69ca5a'),(983,107,'trust_first','90'),(984,107,'_trust_first','field_6617cb724f2b5'),(985,107,'trust_second','66'),(986,107,'_trust_second','field_6617cba54f2b7'),(987,107,'trust_third','89'),(988,107,'_trust_third','field_6617cbb84f2b9'),(989,107,'trust_fourth','83'),(990,107,'_trust_fourth','field_6617cbc54f2ba'),(991,107,'trust_fifth','93'),(992,107,'_trust_fifth','field_6617cbd94f2bb'),(993,107,'trust_sixth','92'),(994,107,'_trust_sixth','field_6617cbe34f2bc'),(995,107,'trust_seventh','85'),(996,107,'_trust_seventh','field_6617cd6d3419d'),(997,107,'trust_eighth','80'),(998,107,'_trust_eighth','field_6617cd8d3419e'),(999,107,'trust_ninth','86'),(1000,107,'_trust_ninth','field_6617cdfa3419f'),(1001,107,'trust_tenth','94'),(1002,107,'_trust_tenth','field_6617ce3d341a1'),(1003,107,'trust_eleventh','87'),(1004,107,'_trust_eleventh','field_6617ce5e341a2'),(1005,107,'trust_twelveth','88'),(1006,107,'_trust_twelveth','field_6617ce87341a3'),(1007,107,'trust_thirteenth','91'),(1008,107,'_trust_thirteenth','field_6617cea3341a4'),(1009,107,'background_image','97'),(1010,107,'_background_image','field_66183a4e40966'),(1011,107,'trust_title','Нам <br> довіряють'),(1012,107,'_trust_title','field_66183c379f37a'),(1013,107,'background_image_2','104'),(1014,107,'_background_image_2','field_661add483a8b0'),(1015,107,'trust_title_first','Нам'),(1016,107,'_trust_title_first','field_66183c379f37a'),(1017,107,'trust_title_second','довіряють'),(1018,107,'_trust_title_second','field_661ae9631502b'),(1019,11,'trust_first_link','https://scb.ua'),(1020,11,'_trust_first_link','field_66202630e7608'),(1021,11,'trust_second_link','https://ligamaistriv.com.ua/'),(1022,11,'_trust_second_link','field_66202866e7609'),(1023,11,'trust_third_link','https://ligamaistriv.com.ua/'),(1024,11,'_trust_third_link','field_66202905e760a'),(1025,11,'trust_fourth_link','https://fado.ua/'),(1026,11,'_trust_fourth_link','field_66202950e760b'),(1027,11,'trust_fifth_link','https://ravago.com/'),(1028,11,'_trust_fifth_link','field_66202965e760c'),(1029,11,'trust_sixth_link','https://vimax-bud.com.ua/'),(1030,11,'_trust_sixth_link','field_662029a0e760d'),(1031,11,'trust_seventh_link','https://veterano.info'),(1032,11,'_trust_seventh_link','field_662029c4e760e'),(1033,11,'trust_eighth_link','https://polimin.ua/'),(1034,11,'_trust_eighth_link','field_66202a1ae760f'),(1035,11,'trust_ninth_link','http://onteplo.com.ua'),(1036,11,'_trust_ninth_link','field_66202a33e7610'),(1037,11,'trust_tenth_link','https://www.keramaexpert.ua'),(1038,11,'_trust_tenth_link','field_66202a5ce7611'),(1039,11,'trust_eleventh_link','https://edup.org.ua/'),(1040,11,'_trust_eleventh_link','field_66202a6de7612'),(1041,11,'trust_twelveth_link','https://specservis.com.ua'),(1042,11,'_trust_twelveth_link','field_66202a8de7613'),(1043,11,'trust_thirteenth_link','https://mira.ua/'),(1044,11,'_trust_thirteenth_link','field_66202adee7614'),(1045,121,'hdr_tel','0630254440'),(1046,121,'_hdr_tel','field_6531b971a7cd7'),(1047,121,'ftr_fb','https://www.facebook.com/IT.SmartGT'),(1048,121,'_ftr_fb','field_6531b9d5a7cd8'),(1049,121,'ftr_inst','https://instagram.com/smart__gt?igshid=NGVhN2U2NjQ0Yg%3D%3D&utm_source=qr'),(1050,121,'_ftr_inst','field_6531ba80a7cd9'),(1051,121,'ftr_tg','https://t.me/smartgt_bot'),(1052,121,'_ftr_tg','field_6531bab1a7cda'),(1053,121,'services_0_service_title','сайти'),(1054,121,'_services_0_service_title','field_6531be7dcefff'),(1055,121,'services_0_service_bg','25'),(1056,121,'_services_0_service_bg','field_6531beabcf000'),(1057,121,'services_1_service_title','інтернет-магазини + ERP + CRM'),(1058,121,'_services_1_service_title','field_6531be7dcefff'),(1059,121,'services_1_service_bg','26'),(1060,121,'_services_1_service_bg','field_6531beabcf000'),(1061,121,'services_2_service_title','SMM'),(1062,121,'_services_2_service_title','field_6531be7dcefff'),(1063,121,'services_2_service_bg','27'),(1064,121,'_services_2_service_bg','field_6531beabcf000'),(1065,121,'services_3_service_title','дизайн'),(1066,121,'_services_3_service_title','field_6531be7dcefff'),(1067,121,'services_3_service_bg','28'),(1068,121,'_services_3_service_bg','field_6531beabcf000'),(1069,121,'services_4_service_title','чат-боти'),(1070,121,'_services_4_service_title','field_6531be7dcefff'),(1071,121,'services_4_service_bg','29'),(1072,121,'_services_4_service_bg','field_6531beabcf000'),(1073,121,'services','5'),(1074,121,'_services','field_6531be62ceffe'),(1075,121,'page_img',''),(1076,121,'_page_img','field_6531c3fef2244'),(1077,121,'masters_slogan','ВАШ КЛЮЧ ДО СУЧАСНОГО БІЗНЕСУ'),(1078,121,'_masters_slogan','field_6531c4b1bb5fc'),(1079,121,'form_slogan','Ми з вами зв’яжемося і візьмемо все у свої руки'),(1080,121,'_form_slogan','field_6531c538bb5fd'),(1081,121,'ftr_text','Всі права захищені'),(1082,121,'_ftr_text','field_6538ded69ca5a'),(1083,121,'trust_first','90'),(1084,121,'_trust_first','field_6617cb724f2b5'),(1085,121,'trust_second','66'),(1086,121,'_trust_second','field_6617cba54f2b7'),(1087,121,'trust_third','89'),(1088,121,'_trust_third','field_6617cbb84f2b9'),(1089,121,'trust_fourth','83'),(1090,121,'_trust_fourth','field_6617cbc54f2ba'),(1091,121,'trust_fifth','93'),(1092,121,'_trust_fifth','field_6617cbd94f2bb'),(1093,121,'trust_sixth','92'),(1094,121,'_trust_sixth','field_6617cbe34f2bc'),(1095,121,'trust_seventh','85'),(1096,121,'_trust_seventh','field_6617cd6d3419d'),(1097,121,'trust_eighth','80'),(1098,121,'_trust_eighth','field_6617cd8d3419e'),(1099,121,'trust_ninth','86'),(1100,121,'_trust_ninth','field_6617cdfa3419f'),(1101,121,'trust_tenth','94'),(1102,121,'_trust_tenth','field_6617ce3d341a1'),(1103,121,'trust_eleventh','87'),(1104,121,'_trust_eleventh','field_6617ce5e341a2'),(1105,121,'trust_twelveth','88'),(1106,121,'_trust_twelveth','field_6617ce87341a3'),(1107,121,'trust_thirteenth','91'),(1108,121,'_trust_thirteenth','field_6617cea3341a4'),(1109,121,'background_image','97'),(1110,121,'_background_image','field_66183a4e40966'),(1111,121,'trust_title','Нам <br> довіряють'),(1112,121,'_trust_title','field_66183c379f37a'),(1113,121,'background_image_2','104'),(1114,121,'_background_image_2','field_661add483a8b0'),(1115,121,'trust_title_first','Нам'),(1116,121,'_trust_title_first','field_66183c379f37a'),(1117,121,'trust_title_second','довіряють'),(1118,121,'_trust_title_second','field_661ae9631502b'),(1119,121,'trust_first_link',''),(1120,121,'_trust_first_link','field_66202630e7608'),(1121,121,'trust_second_link','https://ligamaistriv.com.ua/'),(1122,121,'_trust_second_link','field_66202866e7609'),(1123,121,'trust_third_link',''),(1124,121,'_trust_third_link','field_66202905e760a'),(1125,121,'trust_fourth_link',''),(1126,121,'_trust_fourth_link','field_66202950e760b'),(1127,121,'trust_fifth_link',''),(1128,121,'_trust_fifth_link','field_66202965e760c'),(1129,121,'trust_sixth_link',''),(1130,121,'_trust_sixth_link','field_662029a0e760d'),(1131,121,'trust_seventh_link',''),(1132,121,'_trust_seventh_link','field_662029c4e760e'),(1133,121,'trust_eighth_link',''),(1134,121,'_trust_eighth_link','field_66202a1ae760f'),(1135,121,'trust_ninth_link',''),(1136,121,'_trust_ninth_link','field_66202a33e7610'),(1137,121,'trust_tenth_link',''),(1138,121,'_trust_tenth_link','field_66202a5ce7611'),(1139,121,'trust_eleventh_link',''),(1140,121,'_trust_eleventh_link','field_66202a6de7612'),(1141,121,'trust_twelveth_link',''),(1142,121,'_trust_twelveth_link','field_66202a8de7613'),(1143,121,'trust_thirteenth_link',''),(1144,121,'_trust_thirteenth_link','field_66202adee7614'),(1145,122,'hdr_tel','0630254440'),(1146,122,'_hdr_tel','field_6531b971a7cd7'),(1147,122,'ftr_fb','https://www.facebook.com/IT.SmartGT'),(1148,122,'_ftr_fb','field_6531b9d5a7cd8'),(1149,122,'ftr_inst','https://instagram.com/smart__gt?igshid=NGVhN2U2NjQ0Yg%3D%3D&utm_source=qr'),(1150,122,'_ftr_inst','field_6531ba80a7cd9'),(1151,122,'ftr_tg','https://t.me/smartgt_bot'),(1152,122,'_ftr_tg','field_6531bab1a7cda'),(1153,122,'services_0_service_title','сайти'),(1154,122,'_services_0_service_title','field_6531be7dcefff'),(1155,122,'services_0_service_bg','126'),(1156,122,'_services_0_service_bg','field_6531beabcf000'),(1157,122,'services_1_service_title','інтернет-магазини + ERP + CRM'),(1158,122,'_services_1_service_title','field_6531be7dcefff'),(1159,122,'services_1_service_bg','127'),(1160,122,'_services_1_service_bg','field_6531beabcf000'),(1161,122,'services_2_service_title','SMM'),(1162,122,'_services_2_service_title','field_6531be7dcefff'),(1163,122,'services_2_service_bg','27'),(1164,122,'_services_2_service_bg','field_6531beabcf000'),(1165,122,'services_3_service_title','дизайн'),(1166,122,'_services_3_service_title','field_6531be7dcefff'),(1167,122,'services_3_service_bg','28'),(1168,122,'_services_3_service_bg','field_6531beabcf000'),(1169,122,'services_4_service_title','чат-боти'),(1170,122,'_services_4_service_title','field_6531be7dcefff'),(1171,122,'services_4_service_bg','29'),(1172,122,'_services_4_service_bg','field_6531beabcf000'),(1173,122,'services','5'),(1174,122,'_services','field_6531be62ceffe'),(1175,122,'page_img',''),(1176,122,'_page_img','field_6531c3fef2244'),(1177,122,'masters_slogan','ВАШ КЛЮЧ ДО СУЧАСНОГО БІЗНЕСУ'),(1178,122,'_masters_slogan','field_6531c4b1bb5fc'),(1179,122,'form_slogan','Ми з вами зв’яжемося і візьмемо все у свої руки'),(1180,122,'_form_slogan','field_6531c538bb5fd'),(1181,122,'ftr_text','Всі права захищені'),(1182,122,'_ftr_text','field_6538ded69ca5a'),(1183,122,'trust_first','90'),(1184,122,'_trust_first','field_6617cb724f2b5'),(1185,122,'trust_second','66'),(1186,122,'_trust_second','field_6617cba54f2b7'),(1187,122,'trust_third','89'),(1188,122,'_trust_third','field_6617cbb84f2b9'),(1189,122,'trust_fourth','83'),(1190,122,'_trust_fourth','field_6617cbc54f2ba'),(1191,122,'trust_fifth','93'),(1192,122,'_trust_fifth','field_6617cbd94f2bb'),(1193,122,'trust_sixth','92'),(1194,122,'_trust_sixth','field_6617cbe34f2bc'),(1195,122,'trust_seventh','85'),(1196,122,'_trust_seventh','field_6617cd6d3419d'),(1197,122,'trust_eighth','80'),(1198,122,'_trust_eighth','field_6617cd8d3419e'),(1199,122,'trust_ninth','86'),(1200,122,'_trust_ninth','field_6617cdfa3419f'),(1201,122,'trust_tenth','94'),(1202,122,'_trust_tenth','field_6617ce3d341a1'),(1203,122,'trust_eleventh','87'),(1204,122,'_trust_eleventh','field_6617ce5e341a2'),(1205,122,'trust_twelveth','88'),(1206,122,'_trust_twelveth','field_6617ce87341a3'),(1207,122,'trust_thirteenth','91'),(1208,122,'_trust_thirteenth','field_6617cea3341a4'),(1209,122,'background_image','97'),(1210,122,'_background_image','field_66183a4e40966'),(1211,122,'trust_title','Нам <br> довіряють'),(1212,122,'_trust_title','field_66183c379f37a'),(1213,122,'background_image_2','104'),(1214,122,'_background_image_2','field_661add483a8b0'),(1215,122,'trust_title_first','Нам'),(1216,122,'_trust_title_first','field_66183c379f37a'),(1217,122,'trust_title_second','довіряють'),(1218,122,'_trust_title_second','field_661ae9631502b'),(1219,122,'trust_first_link',''),(1220,122,'_trust_first_link','field_66202630e7608'),(1221,122,'trust_second_link','https://ligamaistriv.com.ua/'),(1222,122,'_trust_second_link','field_66202866e7609'),(1223,122,'trust_third_link','https://svit-pro.com.ua/'),(1224,122,'_trust_third_link','field_66202905e760a'),(1225,122,'trust_fourth_link','https://xn----ctbtc0bhbg8h9c.xn--j1amh/'),(1226,122,'_trust_fourth_link','field_66202950e760b'),(1227,122,'trust_fifth_link',''),(1228,122,'_trust_fifth_link','field_66202965e760c'),(1229,122,'trust_sixth_link','https://vimax-bud.com.ua/'),(1230,122,'_trust_sixth_link','field_662029a0e760d'),(1231,122,'trust_seventh_link',''),(1232,122,'_trust_seventh_link','field_662029c4e760e'),(1233,122,'trust_eighth_link','https://polimin.ua/'),(1234,122,'_trust_eighth_link','field_66202a1ae760f'),(1235,122,'trust_ninth_link','https://ukrbezpekabud.com.ua/'),(1236,122,'_trust_ninth_link','field_66202a33e7610'),(1237,122,'trust_tenth_link',''),(1238,122,'_trust_tenth_link','field_66202a5ce7611'),(1239,122,'trust_eleventh_link','https://www.keramaexpert.ua/'),(1240,122,'_trust_eleventh_link','field_66202a6de7612'),(1241,122,'trust_twelveth_link','https://mv-delivery.com.ua/'),(1242,122,'_trust_twelveth_link','field_66202a8de7613'),(1243,122,'trust_thirteenth_link','https://mira.ua/'),(1244,122,'_trust_thirteenth_link','field_66202adee7614'),(1245,126,'_wp_attached_file','2025/02/Designer-1.jpeg'),(1246,126,'iaff_wp_attachment_original_post_title','Designer (1)'),(1247,126,'_wp_attachment_image_alt','Designer (1)'),(1248,126,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"file\";s:23:\"2025/02/Designer-1.jpeg\";s:8:\"filesize\";i:259324;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"Designer-1-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29030;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"Designer-1-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8640;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"Designer-1-768x768.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:144397;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1249,127,'_wp_attached_file','2025/02/Designer-2.jpeg'),(1250,127,'iaff_wp_attachment_original_post_title','Designer (2)'),(1251,127,'_wp_attachment_image_alt','Designer (2)'),(1252,127,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"file\";s:23:\"2025/02/Designer-2.jpeg\";s:8:\"filesize\";i:196967;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"Designer-2-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23678;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"Designer-2-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7478;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"Designer-2-768x768.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:109707;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1253,129,'_wp_attached_file','2025/02/Designer-3.jpeg'),(1254,129,'iaff_wp_attachment_original_post_title','Designer (3)'),(1255,129,'_wp_attachment_image_alt','Designer (3)'),(1256,129,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"file\";s:23:\"2025/02/Designer-3.jpeg\";s:8:\"filesize\";i:178343;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"Designer-3-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23250;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"Designer-3-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8120;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"Designer-3-768x768.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:97601;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1257,128,'hdr_tel','0630254440'),(1258,128,'_hdr_tel','field_6531b971a7cd7'),(1259,128,'ftr_fb','https://www.facebook.com/IT.SmartGT'),(1260,128,'_ftr_fb','field_6531b9d5a7cd8'),(1261,128,'ftr_inst','https://instagram.com/smart__gt?igshid=NGVhN2U2NjQ0Yg%3D%3D&utm_source=qr'),(1262,128,'_ftr_inst','field_6531ba80a7cd9'),(1263,128,'ftr_tg','https://t.me/smartgt_bot'),(1264,128,'_ftr_tg','field_6531bab1a7cda'),(1265,128,'services_0_service_title','сайти'),(1266,128,'_services_0_service_title','field_6531be7dcefff'),(1267,128,'services_0_service_bg','129'),(1268,128,'_services_0_service_bg','field_6531beabcf000'),(1269,128,'services_1_service_title','інтернет-магазини + ERP + CRM'),(1270,128,'_services_1_service_title','field_6531be7dcefff'),(1271,128,'services_1_service_bg','127'),(1272,128,'_services_1_service_bg','field_6531beabcf000'),(1273,128,'services_2_service_title','SMM'),(1274,128,'_services_2_service_title','field_6531be7dcefff'),(1275,128,'services_2_service_bg','27'),(1276,128,'_services_2_service_bg','field_6531beabcf000'),(1277,128,'services_3_service_title','дизайн'),(1278,128,'_services_3_service_title','field_6531be7dcefff'),(1279,128,'services_3_service_bg','28'),(1280,128,'_services_3_service_bg','field_6531beabcf000'),(1281,128,'services_4_service_title','чат-боти'),(1282,128,'_services_4_service_title','field_6531be7dcefff'),(1283,128,'services_4_service_bg','29'),(1284,128,'_services_4_service_bg','field_6531beabcf000'),(1285,128,'services','5'),(1286,128,'_services','field_6531be62ceffe'),(1287,128,'page_img',''),(1288,128,'_page_img','field_6531c3fef2244'),(1289,128,'masters_slogan','ВАШ КЛЮЧ ДО СУЧАСНОГО БІЗНЕСУ'),(1290,128,'_masters_slogan','field_6531c4b1bb5fc'),(1291,128,'form_slogan','Ми з вами зв’яжемося і візьмемо все у свої руки'),(1292,128,'_form_slogan','field_6531c538bb5fd'),(1293,128,'ftr_text','Всі права захищені'),(1294,128,'_ftr_text','field_6538ded69ca5a'),(1295,128,'trust_first','90'),(1296,128,'_trust_first','field_6617cb724f2b5'),(1297,128,'trust_second','66'),(1298,128,'_trust_second','field_6617cba54f2b7'),(1299,128,'trust_third','89'),(1300,128,'_trust_third','field_6617cbb84f2b9'),(1301,128,'trust_fourth','83'),(1302,128,'_trust_fourth','field_6617cbc54f2ba'),(1303,128,'trust_fifth','93'),(1304,128,'_trust_fifth','field_6617cbd94f2bb'),(1305,128,'trust_sixth','92'),(1306,128,'_trust_sixth','field_6617cbe34f2bc'),(1307,128,'trust_seventh','85'),(1308,128,'_trust_seventh','field_6617cd6d3419d'),(1309,128,'trust_eighth','80'),(1310,128,'_trust_eighth','field_6617cd8d3419e'),(1311,128,'trust_ninth','86'),(1312,128,'_trust_ninth','field_6617cdfa3419f'),(1313,128,'trust_tenth','94'),(1314,128,'_trust_tenth','field_6617ce3d341a1'),(1315,128,'trust_eleventh','87'),(1316,128,'_trust_eleventh','field_6617ce5e341a2'),(1317,128,'trust_twelveth','88'),(1318,128,'_trust_twelveth','field_6617ce87341a3'),(1319,128,'trust_thirteenth','91'),(1320,128,'_trust_thirteenth','field_6617cea3341a4'),(1321,128,'background_image','97'),(1322,128,'_background_image','field_66183a4e40966'),(1323,128,'trust_title','Нам <br> довіряють'),(1324,128,'_trust_title','field_66183c379f37a'),(1325,128,'background_image_2','104'),(1326,128,'_background_image_2','field_661add483a8b0'),(1327,128,'trust_title_first','Нам'),(1328,128,'_trust_title_first','field_66183c379f37a'),(1329,128,'trust_title_second','довіряють'),(1330,128,'_trust_title_second','field_661ae9631502b'),(1331,128,'trust_first_link',''),(1332,128,'_trust_first_link','field_66202630e7608'),(1333,128,'trust_second_link','https://ligamaistriv.com.ua/'),(1334,128,'_trust_second_link','field_66202866e7609'),(1335,128,'trust_third_link','https://svit-pro.com.ua/'),(1336,128,'_trust_third_link','field_66202905e760a'),(1337,128,'trust_fourth_link','https://xn----ctbtc0bhbg8h9c.xn--j1amh/'),(1338,128,'_trust_fourth_link','field_66202950e760b'),(1339,128,'trust_fifth_link',''),(1340,128,'_trust_fifth_link','field_66202965e760c'),(1341,128,'trust_sixth_link','https://vimax-bud.com.ua/'),(1342,128,'_trust_sixth_link','field_662029a0e760d'),(1343,128,'trust_seventh_link',''),(1344,128,'_trust_seventh_link','field_662029c4e760e'),(1345,128,'trust_eighth_link','https://polimin.ua/'),(1346,128,'_trust_eighth_link','field_66202a1ae760f'),(1347,128,'trust_ninth_link','https://ukrbezpekabud.com.ua/'),(1348,128,'_trust_ninth_link','field_66202a33e7610'),(1349,128,'trust_tenth_link',''),(1350,128,'_trust_tenth_link','field_66202a5ce7611'),(1351,128,'trust_eleventh_link','https://www.keramaexpert.ua/'),(1352,128,'_trust_eleventh_link','field_66202a6de7612'),(1353,128,'trust_twelveth_link','https://mv-delivery.com.ua/'),(1354,128,'_trust_twelveth_link','field_66202a8de7613'),(1355,128,'trust_thirteenth_link','https://mira.ua/'),(1356,128,'_trust_thirteenth_link','field_66202adee7614'),(1357,131,'_wp_attached_file','2025/02/Designer-4.jpeg'),(1358,131,'iaff_wp_attachment_original_post_title','Designer (4)'),(1359,131,'_wp_attachment_image_alt','Designer (4)'),(1360,131,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"file\";s:23:\"2025/02/Designer-4.jpeg\";s:8:\"filesize\";i:229134;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"Designer-4-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37061;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"Designer-4-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11942;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"Designer-4-768x768.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:141207;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1361,132,'_wp_attached_file','2025/02/Designer-5.jpeg'),(1362,132,'iaff_wp_attachment_original_post_title','Designer (5)'),(1363,132,'_wp_attachment_image_alt','Designer (5)'),(1364,132,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"file\";s:23:\"2025/02/Designer-5.jpeg\";s:8:\"filesize\";i:229643;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"Designer-5-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31068;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"Designer-5-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10212;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"Designer-5-768x768.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:131558;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1365,130,'hdr_tel','0630254440'),(1366,130,'_hdr_tel','field_6531b971a7cd7'),(1367,130,'ftr_fb','https://www.facebook.com/IT.SmartGT'),(1368,130,'_ftr_fb','field_6531b9d5a7cd8'),(1369,130,'ftr_inst','https://instagram.com/smart__gt?igshid=NGVhN2U2NjQ0Yg%3D%3D&utm_source=qr'),(1370,130,'_ftr_inst','field_6531ba80a7cd9'),(1371,130,'ftr_tg','https://t.me/smartgt_bot'),(1372,130,'_ftr_tg','field_6531bab1a7cda'),(1373,130,'services_0_service_title','сайти'),(1374,130,'_services_0_service_title','field_6531be7dcefff'),(1375,130,'services_0_service_bg','129'),(1376,130,'_services_0_service_bg','field_6531beabcf000'),(1377,130,'services_1_service_title','інтернет-магазини + ERP + CRM'),(1378,130,'_services_1_service_title','field_6531be7dcefff'),(1379,130,'services_1_service_bg','127'),(1380,130,'_services_1_service_bg','field_6531beabcf000'),(1381,130,'services_2_service_title','SMM'),(1382,130,'_services_2_service_title','field_6531be7dcefff'),(1383,130,'services_2_service_bg','131'),(1384,130,'_services_2_service_bg','field_6531beabcf000'),(1385,130,'services_3_service_title','дизайн'),(1386,130,'_services_3_service_title','field_6531be7dcefff'),(1387,130,'services_3_service_bg','132'),(1388,130,'_services_3_service_bg','field_6531beabcf000'),(1389,130,'services_4_service_title','чат-боти'),(1390,130,'_services_4_service_title','field_6531be7dcefff'),(1391,130,'services_4_service_bg','28'),(1392,130,'_services_4_service_bg','field_6531beabcf000'),(1393,130,'services','5'),(1394,130,'_services','field_6531be62ceffe'),(1395,130,'page_img',''),(1396,130,'_page_img','field_6531c3fef2244'),(1397,130,'masters_slogan','ВАШ КЛЮЧ ДО СУЧАСНОГО БІЗНЕСУ'),(1398,130,'_masters_slogan','field_6531c4b1bb5fc'),(1399,130,'form_slogan','Ми з вами зв’яжемося і візьмемо все у свої руки'),(1400,130,'_form_slogan','field_6531c538bb5fd'),(1401,130,'ftr_text','Всі права захищені'),(1402,130,'_ftr_text','field_6538ded69ca5a'),(1403,130,'trust_first','90'),(1404,130,'_trust_first','field_6617cb724f2b5'),(1405,130,'trust_second','66'),(1406,130,'_trust_second','field_6617cba54f2b7'),(1407,130,'trust_third','89'),(1408,130,'_trust_third','field_6617cbb84f2b9'),(1409,130,'trust_fourth','83'),(1410,130,'_trust_fourth','field_6617cbc54f2ba'),(1411,130,'trust_fifth','93'),(1412,130,'_trust_fifth','field_6617cbd94f2bb'),(1413,130,'trust_sixth','92'),(1414,130,'_trust_sixth','field_6617cbe34f2bc'),(1415,130,'trust_seventh','85'),(1416,130,'_trust_seventh','field_6617cd6d3419d'),(1417,130,'trust_eighth','80'),(1418,130,'_trust_eighth','field_6617cd8d3419e'),(1419,130,'trust_ninth','86'),(1420,130,'_trust_ninth','field_6617cdfa3419f'),(1421,130,'trust_tenth','94'),(1422,130,'_trust_tenth','field_6617ce3d341a1'),(1423,130,'trust_eleventh','87'),(1424,130,'_trust_eleventh','field_6617ce5e341a2'),(1425,130,'trust_twelveth','88'),(1426,130,'_trust_twelveth','field_6617ce87341a3'),(1427,130,'trust_thirteenth','91'),(1428,130,'_trust_thirteenth','field_6617cea3341a4'),(1429,130,'background_image','97'),(1430,130,'_background_image','field_66183a4e40966'),(1431,130,'trust_title','Нам <br> довіряють'),(1432,130,'_trust_title','field_66183c379f37a'),(1433,130,'background_image_2','104'),(1434,130,'_background_image_2','field_661add483a8b0'),(1435,130,'trust_title_first','Нам'),(1436,130,'_trust_title_first','field_66183c379f37a'),(1437,130,'trust_title_second','довіряють'),(1438,130,'_trust_title_second','field_661ae9631502b'),(1439,130,'trust_first_link',''),(1440,130,'_trust_first_link','field_66202630e7608'),(1441,130,'trust_second_link','https://ligamaistriv.com.ua/'),(1442,130,'_trust_second_link','field_66202866e7609'),(1443,130,'trust_third_link','https://svit-pro.com.ua/'),(1444,130,'_trust_third_link','field_66202905e760a'),(1445,130,'trust_fourth_link','https://xn----ctbtc0bhbg8h9c.xn--j1amh/'),(1446,130,'_trust_fourth_link','field_66202950e760b'),(1447,130,'trust_fifth_link',''),(1448,130,'_trust_fifth_link','field_66202965e760c'),(1449,130,'trust_sixth_link','https://vimax-bud.com.ua/'),(1450,130,'_trust_sixth_link','field_662029a0e760d'),(1451,130,'trust_seventh_link',''),(1452,130,'_trust_seventh_link','field_662029c4e760e'),(1453,130,'trust_eighth_link','https://polimin.ua/'),(1454,130,'_trust_eighth_link','field_66202a1ae760f'),(1455,130,'trust_ninth_link','https://ukrbezpekabud.com.ua/'),(1456,130,'_trust_ninth_link','field_66202a33e7610'),(1457,130,'trust_tenth_link',''),(1458,130,'_trust_tenth_link','field_66202a5ce7611'),(1459,130,'trust_eleventh_link','https://www.keramaexpert.ua/'),(1460,130,'_trust_eleventh_link','field_66202a6de7612'),(1461,130,'trust_twelveth_link','https://mv-delivery.com.ua/'),(1462,130,'_trust_twelveth_link','field_66202a8de7613'),(1463,130,'trust_thirteenth_link','https://mira.ua/'),(1464,130,'_trust_thirteenth_link','field_66202adee7614'),(1465,134,'_wp_attached_file','2025/02/Designer-6.jpeg'),(1466,134,'iaff_wp_attachment_original_post_title','Designer (6)'),(1467,134,'_wp_attachment_image_alt','Designer (6)'),(1468,134,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"file\";s:23:\"2025/02/Designer-6.jpeg\";s:8:\"filesize\";i:247948;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"Designer-6-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33363;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"Designer-6-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10766;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"Designer-6-768x768.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:144088;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1469,136,'_wp_attached_file','2025/03/Designer-9.jpeg'),(1470,136,'iaff_wp_attachment_original_post_title','Designer (9)'),(1471,136,'_wp_attachment_image_alt','Designer (9)'),(1472,136,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"file\";s:23:\"2025/03/Designer-9.jpeg\";s:8:\"filesize\";i:246493;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"Designer-9-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30618;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"Designer-9-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9668;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"Designer-9-768x768.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:139822;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1473,11,'services_5_service_title','чат-боти'),(1474,11,'_services_5_service_title','field_6531be7dcefff'),(1475,11,'services_5_service_bg','28'),(1476,11,'_services_5_service_bg','field_6531beabcf000'),(1477,133,'hdr_tel','0630254440'),(1478,133,'_hdr_tel','field_6531b971a7cd7'),(1479,133,'ftr_fb','https://www.facebook.com/IT.SmartGT'),(1480,133,'_ftr_fb','field_6531b9d5a7cd8'),(1481,133,'ftr_inst','https://instagram.com/smart__gt?igshid=NGVhN2U2NjQ0Yg%3D%3D&utm_source=qr'),(1482,133,'_ftr_inst','field_6531ba80a7cd9'),(1483,133,'ftr_tg','https://t.me/smartgt_bot'),(1484,133,'_ftr_tg','field_6531bab1a7cda'),(1485,133,'services_0_service_title','консалтинг'),(1486,133,'_services_0_service_title','field_6531be7dcefff'),(1487,133,'services_0_service_bg','136'),(1488,133,'_services_0_service_bg','field_6531beabcf000'),(1489,133,'services_1_service_title','сайти'),(1490,133,'_services_1_service_title','field_6531be7dcefff'),(1491,133,'services_1_service_bg','129'),(1492,133,'_services_1_service_bg','field_6531beabcf000'),(1493,133,'services_2_service_title','інтернет-магазини + ERP + CRM'),(1494,133,'_services_2_service_title','field_6531be7dcefff'),(1495,133,'services_2_service_bg','127'),(1496,133,'_services_2_service_bg','field_6531beabcf000'),(1497,133,'services_3_service_title','SMM'),(1498,133,'_services_3_service_title','field_6531be7dcefff'),(1499,133,'services_3_service_bg','131'),(1500,133,'_services_3_service_bg','field_6531beabcf000'),(1501,133,'services_4_service_title','дизайн'),(1502,133,'_services_4_service_title','field_6531be7dcefff'),(1503,133,'services_4_service_bg','132'),(1504,133,'_services_4_service_bg','field_6531beabcf000'),(1505,133,'services','6'),(1506,133,'_services','field_6531be62ceffe'),(1507,133,'page_img',''),(1508,133,'_page_img','field_6531c3fef2244'),(1509,133,'masters_slogan','ВАШ КЛЮЧ ДО СУЧАСНОГО БІЗНЕСУ'),(1510,133,'_masters_slogan','field_6531c4b1bb5fc'),(1511,133,'form_slogan','Ми з вами зв’яжемося і візьмемо все у свої руки'),(1512,133,'_form_slogan','field_6531c538bb5fd'),(1513,133,'ftr_text','Всі права захищені'),(1514,133,'_ftr_text','field_6538ded69ca5a'),(1515,133,'trust_first','90'),(1516,133,'_trust_first','field_6617cb724f2b5'),(1517,133,'trust_second','66'),(1518,133,'_trust_second','field_6617cba54f2b7'),(1519,133,'trust_third','89'),(1520,133,'_trust_third','field_6617cbb84f2b9'),(1521,133,'trust_fourth','83'),(1522,133,'_trust_fourth','field_6617cbc54f2ba'),(1523,133,'trust_fifth','93'),(1524,133,'_trust_fifth','field_6617cbd94f2bb'),(1525,133,'trust_sixth','92'),(1526,133,'_trust_sixth','field_6617cbe34f2bc'),(1527,133,'trust_seventh','85'),(1528,133,'_trust_seventh','field_6617cd6d3419d'),(1529,133,'trust_eighth','80'),(1530,133,'_trust_eighth','field_6617cd8d3419e'),(1531,133,'trust_ninth','86'),(1532,133,'_trust_ninth','field_6617cdfa3419f'),(1533,133,'trust_tenth','94'),(1534,133,'_trust_tenth','field_6617ce3d341a1'),(1535,133,'trust_eleventh','87'),(1536,133,'_trust_eleventh','field_6617ce5e341a2'),(1537,133,'trust_twelveth','88'),(1538,133,'_trust_twelveth','field_6617ce87341a3'),(1539,133,'trust_thirteenth','91'),(1540,133,'_trust_thirteenth','field_6617cea3341a4'),(1541,133,'background_image','97'),(1542,133,'_background_image','field_66183a4e40966'),(1543,133,'trust_title','Нам <br> довіряють'),(1544,133,'_trust_title','field_66183c379f37a'),(1545,133,'background_image_2','104'),(1546,133,'_background_image_2','field_661add483a8b0'),(1547,133,'trust_title_first','Нам'),(1548,133,'_trust_title_first','field_66183c379f37a'),(1549,133,'trust_title_second','довіряють'),(1550,133,'_trust_title_second','field_661ae9631502b'),(1551,133,'trust_first_link',''),(1552,133,'_trust_first_link','field_66202630e7608'),(1553,133,'trust_second_link','https://ligamaistriv.com.ua/'),(1554,133,'_trust_second_link','field_66202866e7609'),(1555,133,'trust_third_link','https://svit-pro.com.ua/'),(1556,133,'_trust_third_link','field_66202905e760a'),(1557,133,'trust_fourth_link','https://xn----ctbtc0bhbg8h9c.xn--j1amh/'),(1558,133,'_trust_fourth_link','field_66202950e760b'),(1559,133,'trust_fifth_link',''),(1560,133,'_trust_fifth_link','field_66202965e760c'),(1561,133,'trust_sixth_link','https://vimax-bud.com.ua/'),(1562,133,'_trust_sixth_link','field_662029a0e760d'),(1563,133,'trust_seventh_link',''),(1564,133,'_trust_seventh_link','field_662029c4e760e'),(1565,133,'trust_eighth_link','https://polimin.ua/'),(1566,133,'_trust_eighth_link','field_66202a1ae760f'),(1567,133,'trust_ninth_link','https://ukrbezpekabud.com.ua/'),(1568,133,'_trust_ninth_link','field_66202a33e7610'),(1569,133,'trust_tenth_link',''),(1570,133,'_trust_tenth_link','field_66202a5ce7611'),(1571,133,'trust_eleventh_link','https://www.keramaexpert.ua/'),(1572,133,'_trust_eleventh_link','field_66202a6de7612'),(1573,133,'trust_twelveth_link','https://mv-delivery.com.ua/'),(1574,133,'_trust_twelveth_link','field_66202a8de7613'),(1575,133,'trust_thirteenth_link','https://mira.ua/'),(1576,133,'_trust_thirteenth_link','field_66202adee7614'),(1577,133,'services_5_service_title','чат-боти'),(1578,133,'_services_5_service_title','field_6531be7dcefff'),(1579,133,'services_5_service_bg','28'),(1580,133,'_services_5_service_bg','field_6531beabcf000'),(1581,137,'hdr_tel','0630254440'),(1582,137,'_hdr_tel','field_6531b971a7cd7'),(1583,137,'ftr_fb','https://www.facebook.com/IT.SmartGT'),(1584,137,'_ftr_fb','field_6531b9d5a7cd8'),(1585,137,'ftr_inst','https://instagram.com/smart__gt?igshid=NGVhN2U2NjQ0Yg%3D%3D&utm_source=qr'),(1586,137,'_ftr_inst','field_6531ba80a7cd9'),(1587,137,'ftr_tg','https://t.me/smartgt_bot'),(1588,137,'_ftr_tg','field_6531bab1a7cda'),(1589,137,'services_0_service_title','консалтинг'),(1590,137,'_services_0_service_title','field_6531be7dcefff'),(1591,137,'services_0_service_bg','136'),(1592,137,'_services_0_service_bg','field_6531beabcf000'),(1593,137,'services_1_service_title','сайти'),(1594,137,'_services_1_service_title','field_6531be7dcefff'),(1595,137,'services_1_service_bg','129'),(1596,137,'_services_1_service_bg','field_6531beabcf000'),(1597,137,'services_2_service_title','інтернет-магазини + ERP + CRM'),(1598,137,'_services_2_service_title','field_6531be7dcefff'),(1599,137,'services_2_service_bg','127'),(1600,137,'_services_2_service_bg','field_6531beabcf000'),(1601,137,'services_3_service_title','SMM'),(1602,137,'_services_3_service_title','field_6531be7dcefff'),(1603,137,'services_3_service_bg','131'),(1604,137,'_services_3_service_bg','field_6531beabcf000'),(1605,137,'services_4_service_title','дизайн'),(1606,137,'_services_4_service_title','field_6531be7dcefff'),(1607,137,'services_4_service_bg','132'),(1608,137,'_services_4_service_bg','field_6531beabcf000'),(1609,137,'services','6'),(1610,137,'_services','field_6531be62ceffe'),(1611,137,'page_img',''),(1612,137,'_page_img','field_6531c3fef2244'),(1613,137,'masters_slogan','ВАШ КЛЮЧ ДО СУЧАСНОГО БІЗНЕСУ'),(1614,137,'_masters_slogan','field_6531c4b1bb5fc'),(1615,137,'form_slogan','Ми з вами зв’яжемося і візьмемо все у свої руки'),(1616,137,'_form_slogan','field_6531c538bb5fd'),(1617,137,'ftr_text','Всі права захищені'),(1618,137,'_ftr_text','field_6538ded69ca5a'),(1619,137,'trust_first','90'),(1620,137,'_trust_first','field_6617cb724f2b5'),(1621,137,'trust_second','66'),(1622,137,'_trust_second','field_6617cba54f2b7'),(1623,137,'trust_third','89'),(1624,137,'_trust_third','field_6617cbb84f2b9'),(1625,137,'trust_fourth','83'),(1626,137,'_trust_fourth','field_6617cbc54f2ba'),(1627,137,'trust_fifth','93'),(1628,137,'_trust_fifth','field_6617cbd94f2bb'),(1629,137,'trust_sixth','92'),(1630,137,'_trust_sixth','field_6617cbe34f2bc'),(1631,137,'trust_seventh','85'),(1632,137,'_trust_seventh','field_6617cd6d3419d'),(1633,137,'trust_eighth','80'),(1634,137,'_trust_eighth','field_6617cd8d3419e'),(1635,137,'trust_ninth','86'),(1636,137,'_trust_ninth','field_6617cdfa3419f'),(1637,137,'trust_tenth','94'),(1638,137,'_trust_tenth','field_6617ce3d341a1'),(1639,137,'trust_eleventh','87'),(1640,137,'_trust_eleventh','field_6617ce5e341a2'),(1641,137,'trust_twelveth','88'),(1642,137,'_trust_twelveth','field_6617ce87341a3'),(1643,137,'trust_thirteenth','91'),(1644,137,'_trust_thirteenth','field_6617cea3341a4'),(1645,137,'background_image','97'),(1646,137,'_background_image','field_66183a4e40966'),(1647,137,'trust_title','Нам <br> довіряють'),(1648,137,'_trust_title','field_66183c379f37a'),(1649,137,'background_image_2','104'),(1650,137,'_background_image_2','field_661add483a8b0'),(1651,137,'trust_title_first','Нам'),(1652,137,'_trust_title_first','field_66183c379f37a'),(1653,137,'trust_title_second','довіряють'),(1654,137,'_trust_title_second','field_661ae9631502b'),(1655,137,'trust_first_link','https://scb.ua'),(1656,137,'_trust_first_link','field_66202630e7608'),(1657,137,'trust_second_link','https://ligamaistriv.com.ua/'),(1658,137,'_trust_second_link','field_66202866e7609'),(1659,137,'trust_third_link','https://svit-pro.com.ua/'),(1660,137,'_trust_third_link','field_66202905e760a'),(1661,137,'trust_fourth_link','https://xn----ctbtc0bhbg8h9c.xn--j1amh/'),(1662,137,'_trust_fourth_link','field_66202950e760b'),(1663,137,'trust_fifth_link',''),(1664,137,'_trust_fifth_link','field_66202965e760c'),(1665,137,'trust_sixth_link','https://vimax-bud.com.ua/'),(1666,137,'_trust_sixth_link','field_662029a0e760d'),(1667,137,'trust_seventh_link',''),(1668,137,'_trust_seventh_link','field_662029c4e760e'),(1669,137,'trust_eighth_link','https://polimin.ua/'),(1670,137,'_trust_eighth_link','field_66202a1ae760f'),(1671,137,'trust_ninth_link','https://ukrbezpekabud.com.ua/'),(1672,137,'_trust_ninth_link','field_66202a33e7610'),(1673,137,'trust_tenth_link',''),(1674,137,'_trust_tenth_link','field_66202a5ce7611'),(1675,137,'trust_eleventh_link','https://www.keramaexpert.ua/'),(1676,137,'_trust_eleventh_link','field_66202a6de7612'),(1677,137,'trust_twelveth_link','https://mv-delivery.com.ua/'),(1678,137,'_trust_twelveth_link','field_66202a8de7613'),(1679,137,'trust_thirteenth_link','https://mira.ua/'),(1680,137,'_trust_thirteenth_link','field_66202adee7614'),(1681,137,'services_5_service_title','чат-боти'),(1682,137,'_services_5_service_title','field_6531be7dcefff'),(1683,137,'services_5_service_bg','28'),(1684,137,'_services_5_service_bg','field_6531beabcf000'),(1685,143,'hdr_tel','0630254440'),(1686,143,'_hdr_tel','field_6531b971a7cd7'),(1687,143,'ftr_fb','https://www.facebook.com/IT.SmartGT'),(1688,143,'_ftr_fb','field_6531b9d5a7cd8'),(1689,143,'ftr_inst','https://instagram.com/smart__gt?igshid=NGVhN2U2NjQ0Yg%3D%3D&utm_source=qr'),(1690,143,'_ftr_inst','field_6531ba80a7cd9'),(1691,143,'ftr_tg','https://t.me/smartgt_bot'),(1692,143,'_ftr_tg','field_6531bab1a7cda'),(1693,143,'services_0_service_title','консалтинг'),(1694,143,'_services_0_service_title','field_6531be7dcefff'),(1695,143,'services_0_service_bg','136'),(1696,143,'_services_0_service_bg','field_6531beabcf000'),(1697,143,'services_1_service_title','сайти'),(1698,143,'_services_1_service_title','field_6531be7dcefff'),(1699,143,'services_1_service_bg','129'),(1700,143,'_services_1_service_bg','field_6531beabcf000'),(1701,143,'services_2_service_title','інтернет-магазини + ERP + CRM'),(1702,143,'_services_2_service_title','field_6531be7dcefff'),(1703,143,'services_2_service_bg','127'),(1704,143,'_services_2_service_bg','field_6531beabcf000'),(1705,143,'services_3_service_title','SMM'),(1706,143,'_services_3_service_title','field_6531be7dcefff'),(1707,143,'services_3_service_bg','131'),(1708,143,'_services_3_service_bg','field_6531beabcf000'),(1709,143,'services_4_service_title','дизайн'),(1710,143,'_services_4_service_title','field_6531be7dcefff'),(1711,143,'services_4_service_bg','132'),(1712,143,'_services_4_service_bg','field_6531beabcf000'),(1713,143,'services','6'),(1714,143,'_services','field_6531be62ceffe'),(1715,143,'page_img',''),(1716,143,'_page_img','field_6531c3fef2244'),(1717,143,'masters_slogan','ВАШ КЛЮЧ ДО СУЧАСНОГО БІЗНЕСУ'),(1718,143,'_masters_slogan','field_6531c4b1bb5fc'),(1719,143,'form_slogan','Ми з вами зв’яжемося і візьмемо все у свої руки'),(1720,143,'_form_slogan','field_6531c538bb5fd'),(1721,143,'ftr_text','Всі права захищені'),(1722,143,'_ftr_text','field_6538ded69ca5a'),(1723,143,'trust_first','90'),(1724,143,'_trust_first','field_6617cb724f2b5'),(1725,143,'trust_second','145'),(1726,143,'_trust_second','field_6617cba54f2b7'),(1727,143,'trust_third','149'),(1728,143,'_trust_third','field_6617cbb84f2b9'),(1729,143,'trust_fourth','148'),(1730,143,'_trust_fourth','field_6617cbc54f2ba'),(1731,143,'trust_fifth','93'),(1732,143,'_trust_fifth','field_6617cbd94f2bb'),(1733,143,'trust_sixth','92'),(1734,143,'_trust_sixth','field_6617cbe34f2bc'),(1735,143,'trust_seventh','85'),(1736,143,'_trust_seventh','field_6617cd6d3419d'),(1737,143,'trust_eighth','146'),(1738,143,'_trust_eighth','field_6617cd8d3419e'),(1739,143,'trust_ninth','86'),(1740,143,'_trust_ninth','field_6617cdfa3419f'),(1741,143,'trust_tenth',''),(1742,143,'_trust_tenth','field_6617ce3d341a1'),(1743,143,'trust_eleventh','87'),(1744,143,'_trust_eleventh','field_6617ce5e341a2'),(1745,143,'trust_twelveth',''),(1746,143,'_trust_twelveth','field_6617ce87341a3'),(1747,143,'trust_thirteenth','147'),(1748,143,'_trust_thirteenth','field_6617cea3341a4'),(1749,143,'background_image','97'),(1750,143,'_background_image','field_66183a4e40966'),(1751,143,'trust_title','Нам <br> довіряють'),(1752,143,'_trust_title','field_66183c379f37a'),(1753,143,'background_image_2','104'),(1754,143,'_background_image_2','field_661add483a8b0'),(1755,143,'trust_title_first','Нам'),(1756,143,'_trust_title_first','field_66183c379f37a'),(1757,143,'trust_title_second','довіряють'),(1758,143,'_trust_title_second','field_661ae9631502b'),(1759,143,'trust_first_link','https://scb.ua'),(1760,143,'_trust_first_link','field_66202630e7608'),(1761,143,'trust_second_link','https://ligamaistriv.com.ua/'),(1762,143,'_trust_second_link','field_66202866e7609'),(1763,143,'trust_third_link','https://svit-pro.com.ua/'),(1764,143,'_trust_third_link','field_66202905e760a'),(1765,143,'trust_fourth_link','https://xn----ctbtc0bhbg8h9c.xn--j1amh/'),(1766,143,'_trust_fourth_link','field_66202950e760b'),(1767,143,'trust_fifth_link',''),(1768,143,'_trust_fifth_link','field_66202965e760c'),(1769,143,'trust_sixth_link','https://vimax-bud.com.ua/'),(1770,143,'_trust_sixth_link','field_662029a0e760d'),(1771,143,'trust_seventh_link',''),(1772,143,'_trust_seventh_link','field_662029c4e760e'),(1773,143,'trust_eighth_link','https://polimin.ua/'),(1774,143,'_trust_eighth_link','field_66202a1ae760f'),(1775,143,'trust_ninth_link','https://ukrbezpekabud.com.ua/'),(1776,143,'_trust_ninth_link','field_66202a33e7610'),(1777,143,'trust_tenth_link',''),(1778,143,'_trust_tenth_link','field_66202a5ce7611'),(1779,143,'trust_eleventh_link','https://www.keramaexpert.ua/'),(1780,143,'_trust_eleventh_link','field_66202a6de7612'),(1781,143,'trust_twelveth_link','https://mv-delivery.com.ua/'),(1782,143,'_trust_twelveth_link','field_66202a8de7613'),(1783,143,'trust_thirteenth_link','https://mira.ua/'),(1784,143,'_trust_thirteenth_link','field_66202adee7614'),(1785,143,'services_5_service_title','чат-боти'),(1786,143,'_services_5_service_title','field_6531be7dcefff'),(1787,143,'services_5_service_bg','28'),(1788,143,'_services_5_service_bg','field_6531beabcf000'),(1789,1,'_edit_lock','1757504075:1'),(1790,1,'_yoast_indexnow_last_ping','1757504073'),(1791,1,'_edit_last','1'),(1792,1,'_yoast_wpseo_primary_category',''),(1793,1,'_yoast_wpseo_content_score','90'),(1794,1,'_yoast_wpseo_focuskeywords','[]'),(1795,1,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(1796,1,'_yoast_wpseo_estimated-reading-time-minutes','1'),(1797,1,'_yoast_wpseo_wordproof_timestamp',''),(1798,145,'_wp_attached_file','2025/09/site_lm.svg'),(1799,145,'iaff_wp_attachment_original_post_title','site_lm'),(1800,145,'_wp_attachment_image_alt','site lm'),(1801,145,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:23540;}'),(1802,146,'_wp_attached_file','2025/09/длго-для-сайту_Polimin.svg'),(1803,146,'iaff_wp_attachment_original_post_title','длго для сайту_Polimin'),(1804,146,'_wp_attachment_image_alt','длго для сайту Polimin'),(1805,146,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:1738;}'),(1806,147,'_wp_attached_file','2025/09/длго-для-сайту_Mira.svg'),(1807,147,'iaff_wp_attachment_original_post_title','длго для сайту_Mira'),(1808,147,'_wp_attachment_image_alt','длго для сайту Mira'),(1809,147,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:2901;}'),(1810,148,'_wp_attached_file','2025/09/длго-для-сайту_Fado.svg'),(1811,148,'iaff_wp_attachment_original_post_title','длго для сайту_Fado'),(1812,148,'_wp_attachment_image_alt','длго для сайту Fado'),(1813,148,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:4909;}'),(1814,149,'_wp_attached_file','2025/09/длго-для-сайту_Твій-юрист.svg'),(1815,149,'iaff_wp_attachment_original_post_title','длго для сайту_Твій юрист'),(1816,149,'_wp_attachment_image_alt','длго для сайту Твій юрист'),(1817,149,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:3819;}'),(1942,156,'hdr_tel','0630254440'),(1818,151,'_wp_attached_file','2025/09/длго-для-сайту_Твій-юрист.png'),(1819,151,'iaff_wp_attachment_original_post_title','длго для сайту_Твій юрист'),(1820,151,'_wp_attachment_image_alt','длго для сайту Твій юрист'),(1821,151,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:130;s:6:\"height\";i:50;s:4:\"file\";s:58:\"2025/09/длго-для-сайту_Твій-юрист.png\";s:8:\"filesize\";i:2748;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:{}}}'),(1822,152,'_wp_attached_file','2025/09/длго-для-сайту_Fado.png'),(1823,152,'iaff_wp_attachment_original_post_title','длго для сайту_Fado'),(1824,152,'_wp_attachment_image_alt','длго для сайту Fado'),(1825,152,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:150;s:6:\"height\";i:50;s:4:\"file\";s:43:\"2025/09/длго-для-сайту_Fado.png\";s:8:\"filesize\";i:2857;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:{}}}'),(1826,153,'_wp_attached_file','2025/09/длго-для-сайту_Mira.png'),(1827,153,'iaff_wp_attachment_original_post_title','длго для сайту_Mira'),(1828,153,'_wp_attachment_image_alt','длго для сайту Mira'),(1829,153,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:140;s:6:\"height\";i:50;s:4:\"file\";s:43:\"2025/09/длго-для-сайту_Mira.png\";s:8:\"filesize\";i:2713;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:{}}}'),(1830,154,'_wp_attached_file','2025/09/длго-для-сайту_Polimin.png'),(1831,154,'iaff_wp_attachment_original_post_title','длго для сайту_Polimin'),(1832,154,'_wp_attachment_image_alt','длго для сайту Polimin'),(1833,154,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:50;s:4:\"file\";s:46:\"2025/09/длго-для-сайту_Polimin.png\";s:8:\"filesize\";i:2567;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:45:\"длго-для-сайту_Polimin-150x50.png\";s:5:\"width\";i:150;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3350;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1834,155,'_wp_attached_file','2025/09/site_lm.png'),(1835,155,'iaff_wp_attachment_original_post_title','site_lm'),(1836,155,'_wp_attachment_image_alt','site lm'),(1837,155,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:50;s:4:\"file\";s:19:\"2025/09/site_lm.png\";s:8:\"filesize\";i:4110;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"site_lm-150x50.png\";s:5:\"width\";i:150;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7213;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1838,150,'hdr_tel','0630254440'),(1839,150,'_hdr_tel','field_6531b971a7cd7'),(1840,150,'ftr_fb','https://www.facebook.com/IT.SmartGT'),(1841,150,'_ftr_fb','field_6531b9d5a7cd8'),(1842,150,'ftr_inst','https://instagram.com/smart__gt?igshid=NGVhN2U2NjQ0Yg%3D%3D&utm_source=qr'),(1843,150,'_ftr_inst','field_6531ba80a7cd9'),(1844,150,'ftr_tg','https://t.me/smartgt_bot'),(1845,150,'_ftr_tg','field_6531bab1a7cda'),(1846,150,'services_0_service_title','консалтинг'),(1847,150,'_services_0_service_title','field_6531be7dcefff'),(1848,150,'services_0_service_bg','136'),(1849,150,'_services_0_service_bg','field_6531beabcf000'),(1850,150,'services_1_service_title','сайти'),(1851,150,'_services_1_service_title','field_6531be7dcefff'),(1852,150,'services_1_service_bg','129'),(1853,150,'_services_1_service_bg','field_6531beabcf000'),(1854,150,'services_2_service_title','інтернет-магазини + ERP + CRM'),(1855,150,'_services_2_service_title','field_6531be7dcefff'),(1856,150,'services_2_service_bg','127'),(1857,150,'_services_2_service_bg','field_6531beabcf000'),(1858,150,'services_3_service_title','SMM'),(1859,150,'_services_3_service_title','field_6531be7dcefff'),(1860,150,'services_3_service_bg','131'),(1861,150,'_services_3_service_bg','field_6531beabcf000'),(1862,150,'services_4_service_title','дизайн'),(1863,150,'_services_4_service_title','field_6531be7dcefff'),(1864,150,'services_4_service_bg','132'),(1865,150,'_services_4_service_bg','field_6531beabcf000'),(1866,150,'services','6'),(1867,150,'_services','field_6531be62ceffe'),(1868,150,'page_img',''),(1869,150,'_page_img','field_6531c3fef2244'),(1870,150,'masters_slogan','ВАШ КЛЮЧ ДО СУЧАСНОГО БІЗНЕСУ'),(1871,150,'_masters_slogan','field_6531c4b1bb5fc'),(1872,150,'form_slogan','Ми з вами зв’яжемося і візьмемо все у свої руки'),(1873,150,'_form_slogan','field_6531c538bb5fd'),(1874,150,'ftr_text','Всі права захищені'),(1875,150,'_ftr_text','field_6538ded69ca5a'),(1876,150,'trust_first','90'),(1877,150,'_trust_first','field_6617cb724f2b5'),(1878,150,'trust_second','155'),(1879,150,'_trust_second','field_6617cba54f2b7'),(1880,150,'trust_third','151'),(1881,150,'_trust_third','field_6617cbb84f2b9'),(1882,150,'trust_fourth','148'),(1883,150,'_trust_fourth','field_6617cbc54f2ba'),(1884,150,'trust_fifth','93'),(1885,150,'_trust_fifth','field_6617cbd94f2bb'),(1886,150,'trust_sixth','92'),(1887,150,'_trust_sixth','field_6617cbe34f2bc'),(1888,150,'trust_seventh','85'),(1889,150,'_trust_seventh','field_6617cd6d3419d'),(1890,150,'trust_eighth','146'),(1891,150,'_trust_eighth','field_6617cd8d3419e'),(1892,150,'trust_ninth','86'),(1893,150,'_trust_ninth','field_6617cdfa3419f'),(1894,150,'trust_tenth',''),(1895,150,'_trust_tenth','field_6617ce3d341a1'),(1896,150,'trust_eleventh','87'),(1897,150,'_trust_eleventh','field_6617ce5e341a2'),(1898,150,'trust_twelveth',''),(1899,150,'_trust_twelveth','field_6617ce87341a3'),(1900,150,'trust_thirteenth','147'),(1901,150,'_trust_thirteenth','field_6617cea3341a4'),(1902,150,'background_image','97'),(1903,150,'_background_image','field_66183a4e40966'),(1904,150,'trust_title','Нам <br> довіряють'),(1905,150,'_trust_title','field_66183c379f37a'),(1906,150,'background_image_2','104'),(1907,150,'_background_image_2','field_661add483a8b0'),(1908,150,'trust_title_first','Нам'),(1909,150,'_trust_title_first','field_66183c379f37a'),(1910,150,'trust_title_second','довіряють'),(1911,150,'_trust_title_second','field_661ae9631502b'),(1912,150,'trust_first_link','https://scb.ua'),(1913,150,'_trust_first_link','field_66202630e7608'),(1914,150,'trust_second_link','https://ligamaistriv.com.ua/'),(1915,150,'_trust_second_link','field_66202866e7609'),(1916,150,'trust_third_link','https://svit-pro.com.ua/'),(1917,150,'_trust_third_link','field_66202905e760a'),(1918,150,'trust_fourth_link','https://xn----ctbtc0bhbg8h9c.xn--j1amh/'),(1919,150,'_trust_fourth_link','field_66202950e760b'),(1920,150,'trust_fifth_link',''),(1921,150,'_trust_fifth_link','field_66202965e760c'),(1922,150,'trust_sixth_link','https://vimax-bud.com.ua/'),(1923,150,'_trust_sixth_link','field_662029a0e760d'),(1924,150,'trust_seventh_link',''),(1925,150,'_trust_seventh_link','field_662029c4e760e'),(1926,150,'trust_eighth_link','https://polimin.ua/'),(1927,150,'_trust_eighth_link','field_66202a1ae760f'),(1928,150,'trust_ninth_link','https://ukrbezpekabud.com.ua/'),(1929,150,'_trust_ninth_link','field_66202a33e7610'),(1930,150,'trust_tenth_link',''),(1931,150,'_trust_tenth_link','field_66202a5ce7611'),(1932,150,'trust_eleventh_link','https://www.keramaexpert.ua/'),(1933,150,'_trust_eleventh_link','field_66202a6de7612'),(1934,150,'trust_twelveth_link','https://mv-delivery.com.ua/'),(1935,150,'_trust_twelveth_link','field_66202a8de7613'),(1936,150,'trust_thirteenth_link','https://mira.ua/'),(1937,150,'_trust_thirteenth_link','field_66202adee7614'),(1938,150,'services_5_service_title','чат-боти'),(1939,150,'_services_5_service_title','field_6531be7dcefff'),(1940,150,'services_5_service_bg','28'),(1941,150,'_services_5_service_bg','field_6531beabcf000'),(1943,156,'_hdr_tel','field_6531b971a7cd7'),(1944,156,'ftr_fb','https://www.facebook.com/IT.SmartGT'),(1945,156,'_ftr_fb','field_6531b9d5a7cd8'),(1946,156,'ftr_inst','https://instagram.com/smart__gt?igshid=NGVhN2U2NjQ0Yg%3D%3D&utm_source=qr'),(1947,156,'_ftr_inst','field_6531ba80a7cd9'),(1948,156,'ftr_tg','https://t.me/smartgt_bot'),(1949,156,'_ftr_tg','field_6531bab1a7cda'),(1950,156,'services_0_service_title','консалтинг'),(1951,156,'_services_0_service_title','field_6531be7dcefff'),(1952,156,'services_0_service_bg','136'),(1953,156,'_services_0_service_bg','field_6531beabcf000'),(1954,156,'services_1_service_title','сайти'),(1955,156,'_services_1_service_title','field_6531be7dcefff'),(1956,156,'services_1_service_bg','129'),(1957,156,'_services_1_service_bg','field_6531beabcf000'),(1958,156,'services_2_service_title','інтернет-магазини + ERP + CRM'),(1959,156,'_services_2_service_title','field_6531be7dcefff'),(1960,156,'services_2_service_bg','127'),(1961,156,'_services_2_service_bg','field_6531beabcf000'),(1962,156,'services_3_service_title','SMM'),(1963,156,'_services_3_service_title','field_6531be7dcefff'),(1964,156,'services_3_service_bg','131'),(1965,156,'_services_3_service_bg','field_6531beabcf000'),(1966,156,'services_4_service_title','дизайн'),(1967,156,'_services_4_service_title','field_6531be7dcefff'),(1968,156,'services_4_service_bg','132'),(1969,156,'_services_4_service_bg','field_6531beabcf000'),(1970,156,'services','6'),(1971,156,'_services','field_6531be62ceffe'),(1972,156,'page_img',''),(1973,156,'_page_img','field_6531c3fef2244'),(1974,156,'masters_slogan','ВАШ КЛЮЧ ДО СУЧАСНОГО БІЗНЕСУ'),(1975,156,'_masters_slogan','field_6531c4b1bb5fc'),(1976,156,'form_slogan','Ми з вами зв’яжемося і візьмемо все у свої руки'),(1977,156,'_form_slogan','field_6531c538bb5fd'),(1978,156,'ftr_text','Всі права захищені'),(1979,156,'_ftr_text','field_6538ded69ca5a'),(1980,156,'trust_first','90'),(1981,156,'_trust_first','field_6617cb724f2b5'),(1982,156,'trust_second','155'),(1983,156,'_trust_second','field_6617cba54f2b7'),(1984,156,'trust_third','151'),(1985,156,'_trust_third','field_6617cbb84f2b9'),(1986,156,'trust_fourth','152'),(1987,156,'_trust_fourth','field_6617cbc54f2ba'),(1988,156,'trust_fifth','93'),(1989,156,'_trust_fifth','field_6617cbd94f2bb'),(1990,156,'trust_sixth','92'),(1991,156,'_trust_sixth','field_6617cbe34f2bc'),(1992,156,'trust_seventh','85'),(1993,156,'_trust_seventh','field_6617cd6d3419d'),(1994,156,'trust_eighth','154'),(1995,156,'_trust_eighth','field_6617cd8d3419e'),(1996,156,'trust_ninth','86'),(1997,156,'_trust_ninth','field_6617cdfa3419f'),(1998,156,'trust_tenth','147'),(1999,156,'_trust_tenth','field_6617ce3d341a1'),(2000,156,'trust_eleventh','87'),(2001,156,'_trust_eleventh','field_6617ce5e341a2'),(2002,156,'trust_twelveth',''),(2003,156,'_trust_twelveth','field_6617ce87341a3'),(2004,156,'trust_thirteenth',''),(2005,156,'_trust_thirteenth','field_6617cea3341a4'),(2006,156,'background_image','97'),(2007,156,'_background_image','field_66183a4e40966'),(2008,156,'trust_title','Нам <br> довіряють'),(2009,156,'_trust_title','field_66183c379f37a'),(2010,156,'background_image_2','104'),(2011,156,'_background_image_2','field_661add483a8b0'),(2012,156,'trust_title_first','Нам'),(2013,156,'_trust_title_first','field_66183c379f37a'),(2014,156,'trust_title_second','довіряють'),(2015,156,'_trust_title_second','field_661ae9631502b'),(2016,156,'trust_first_link','https://scb.ua'),(2017,156,'_trust_first_link','field_66202630e7608'),(2018,156,'trust_second_link','https://ligamaistriv.com.ua/'),(2019,156,'_trust_second_link','field_66202866e7609'),(2020,156,'trust_third_link','https://svit-pro.com.ua/'),(2021,156,'_trust_third_link','field_66202905e760a'),(2022,156,'trust_fourth_link','https://xn----ctbtc0bhbg8h9c.xn--j1amh/'),(2023,156,'_trust_fourth_link','field_66202950e760b'),(2024,156,'trust_fifth_link',''),(2025,156,'_trust_fifth_link','field_66202965e760c'),(2026,156,'trust_sixth_link','https://vimax-bud.com.ua/'),(2027,156,'_trust_sixth_link','field_662029a0e760d'),(2028,156,'trust_seventh_link',''),(2029,156,'_trust_seventh_link','field_662029c4e760e'),(2030,156,'trust_eighth_link','https://polimin.ua/'),(2031,156,'_trust_eighth_link','field_66202a1ae760f'),(2032,156,'trust_ninth_link','https://ukrbezpekabud.com.ua/'),(2033,156,'_trust_ninth_link','field_66202a33e7610'),(2034,156,'trust_tenth_link',''),(2035,156,'_trust_tenth_link','field_66202a5ce7611'),(2036,156,'trust_eleventh_link','https://www.keramaexpert.ua/'),(2037,156,'_trust_eleventh_link','field_66202a6de7612'),(2038,156,'trust_twelveth_link','https://mv-delivery.com.ua/'),(2039,156,'_trust_twelveth_link','field_66202a8de7613'),(2040,156,'trust_thirteenth_link','https://mira.ua/'),(2041,156,'_trust_thirteenth_link','field_66202adee7614'),(2042,156,'services_5_service_title','чат-боти'),(2043,156,'_services_5_service_title','field_6531be7dcefff'),(2044,156,'services_5_service_bg','28'),(2045,156,'_services_5_service_bg','field_6531beabcf000'),(2046,157,'hdr_tel','0630254440'),(2047,157,'_hdr_tel','field_6531b971a7cd7'),(2048,157,'ftr_fb','https://www.facebook.com/IT.SmartGT'),(2049,157,'_ftr_fb','field_6531b9d5a7cd8'),(2050,157,'ftr_inst','https://instagram.com/smart__gt?igshid=NGVhN2U2NjQ0Yg%3D%3D&utm_source=qr'),(2051,157,'_ftr_inst','field_6531ba80a7cd9'),(2052,157,'ftr_tg','https://t.me/smartgt_bot'),(2053,157,'_ftr_tg','field_6531bab1a7cda'),(2054,157,'services_0_service_title','консалтинг'),(2055,157,'_services_0_service_title','field_6531be7dcefff'),(2056,157,'services_0_service_bg','136'),(2057,157,'_services_0_service_bg','field_6531beabcf000'),(2058,157,'services_1_service_title','сайти'),(2059,157,'_services_1_service_title','field_6531be7dcefff'),(2060,157,'services_1_service_bg','129'),(2061,157,'_services_1_service_bg','field_6531beabcf000'),(2062,157,'services_2_service_title','інтернет-магазини + ERP + CRM'),(2063,157,'_services_2_service_title','field_6531be7dcefff'),(2064,157,'services_2_service_bg','127'),(2065,157,'_services_2_service_bg','field_6531beabcf000'),(2066,157,'services_3_service_title','SMM'),(2067,157,'_services_3_service_title','field_6531be7dcefff'),(2068,157,'services_3_service_bg','131'),(2069,157,'_services_3_service_bg','field_6531beabcf000'),(2070,157,'services_4_service_title','дизайн'),(2071,157,'_services_4_service_title','field_6531be7dcefff'),(2072,157,'services_4_service_bg','132'),(2073,157,'_services_4_service_bg','field_6531beabcf000'),(2074,157,'services','6'),(2075,157,'_services','field_6531be62ceffe'),(2076,157,'page_img',''),(2077,157,'_page_img','field_6531c3fef2244'),(2078,157,'masters_slogan','ВАШ КЛЮЧ ДО СУЧАСНОГО БІЗНЕСУ'),(2079,157,'_masters_slogan','field_6531c4b1bb5fc'),(2080,157,'form_slogan','Ми з вами зв’яжемося і візьмемо все у свої руки'),(2081,157,'_form_slogan','field_6531c538bb5fd'),(2082,157,'ftr_text','Всі права захищені'),(2083,157,'_ftr_text','field_6538ded69ca5a'),(2084,157,'trust_first','90'),(2085,157,'_trust_first','field_6617cb724f2b5'),(2086,157,'trust_second','155'),(2087,157,'_trust_second','field_6617cba54f2b7'),(2088,157,'trust_third','151'),(2089,157,'_trust_third','field_6617cbb84f2b9'),(2090,157,'trust_fourth','152'),(2091,157,'_trust_fourth','field_6617cbc54f2ba'),(2092,157,'trust_fifth','93'),(2093,157,'_trust_fifth','field_6617cbd94f2bb'),(2094,157,'trust_sixth','92'),(2095,157,'_trust_sixth','field_6617cbe34f2bc'),(2096,157,'trust_seventh','85'),(2097,157,'_trust_seventh','field_6617cd6d3419d'),(2098,157,'trust_eighth','154'),(2099,157,'_trust_eighth','field_6617cd8d3419e'),(2100,157,'trust_ninth','86'),(2101,157,'_trust_ninth','field_6617cdfa3419f'),(2102,157,'trust_tenth','87'),(2103,157,'_trust_tenth','field_6617ce3d341a1'),(2104,157,'trust_eleventh',''),(2105,157,'_trust_eleventh','field_6617ce5e341a2'),(2106,157,'trust_twelveth',''),(2107,157,'_trust_twelveth','field_6617ce87341a3'),(2108,157,'trust_thirteenth',''),(2109,157,'_trust_thirteenth','field_6617cea3341a4'),(2110,157,'background_image','97'),(2111,157,'_background_image','field_66183a4e40966'),(2112,157,'trust_title','Нам <br> довіряють'),(2113,157,'_trust_title','field_66183c379f37a'),(2114,157,'background_image_2','104'),(2115,157,'_background_image_2','field_661add483a8b0'),(2116,157,'trust_title_first','Нам'),(2117,157,'_trust_title_first','field_66183c379f37a'),(2118,157,'trust_title_second','довіряють'),(2119,157,'_trust_title_second','field_661ae9631502b'),(2120,157,'trust_first_link','https://scb.ua'),(2121,157,'_trust_first_link','field_66202630e7608'),(2122,157,'trust_second_link','https://ligamaistriv.com.ua/'),(2123,157,'_trust_second_link','field_66202866e7609'),(2124,157,'trust_third_link','https://svit-pro.com.ua/'),(2125,157,'_trust_third_link','field_66202905e760a'),(2126,157,'trust_fourth_link','https://xn----ctbtc0bhbg8h9c.xn--j1amh/'),(2127,157,'_trust_fourth_link','field_66202950e760b'),(2128,157,'trust_fifth_link',''),(2129,157,'_trust_fifth_link','field_66202965e760c'),(2130,157,'trust_sixth_link','https://vimax-bud.com.ua/'),(2131,157,'_trust_sixth_link','field_662029a0e760d'),(2132,157,'trust_seventh_link',''),(2133,157,'_trust_seventh_link','field_662029c4e760e'),(2134,157,'trust_eighth_link','https://polimin.ua/'),(2135,157,'_trust_eighth_link','field_66202a1ae760f'),(2136,157,'trust_ninth_link','https://ukrbezpekabud.com.ua/'),(2137,157,'_trust_ninth_link','field_66202a33e7610'),(2138,157,'trust_tenth_link',''),(2139,157,'_trust_tenth_link','field_66202a5ce7611'),(2140,157,'trust_eleventh_link','https://www.keramaexpert.ua/'),(2141,157,'_trust_eleventh_link','field_66202a6de7612'),(2142,157,'trust_twelveth_link','https://mv-delivery.com.ua/'),(2143,157,'_trust_twelveth_link','field_66202a8de7613'),(2144,157,'trust_thirteenth_link','https://mira.ua/'),(2145,157,'_trust_thirteenth_link','field_66202adee7614'),(2146,157,'services_5_service_title','чат-боти'),(2147,157,'_services_5_service_title','field_6531be7dcefff'),(2148,157,'services_5_service_bg','28'),(2149,157,'_services_5_service_bg','field_6531beabcf000'),(2150,159,'_wp_attached_file','2025/09/лого-для-сайту-09.png'),(2151,159,'iaff_wp_attachment_original_post_title','лого для сайту-09'),(2152,159,'_wp_attachment_image_alt','лого для сайту 09'),(2153,159,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:626;s:6:\"height\";i:210;s:4:\"file\";s:41:\"2025/09/лого-для-сайту-09.png\";s:8:\"filesize\";i:15179;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"лого-для-сайту-09-300x101.png\";s:5:\"width\";i:300;s:6:\"height\";i:101;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11825;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"лого-для-сайту-09-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7642;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2154,160,'_wp_attached_file','2025/09/лого-для-сайту-08.png'),(2155,160,'iaff_wp_attachment_original_post_title','лого для сайту-08'),(2156,160,'_wp_attachment_image_alt','лого для сайту 08'),(2157,160,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:667;s:6:\"height\";i:210;s:4:\"file\";s:41:\"2025/09/лого-для-сайту-08.png\";s:8:\"filesize\";i:11037;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:40:\"лого-для-сайту-08-300x94.png\";s:5:\"width\";i:300;s:6:\"height\";i:94;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9146;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"лого-для-сайту-08-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5029;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2158,161,'_wp_attached_file','2025/09/лого-для-сайту-07.png'),(2159,161,'iaff_wp_attachment_original_post_title','лого для сайту-07'),(2160,161,'_wp_attachment_image_alt','лого для сайту 07'),(2161,161,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:626;s:6:\"height\";i:210;s:4:\"file\";s:41:\"2025/09/лого-для-сайту-07.png\";s:8:\"filesize\";i:7174;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"лого-для-сайту-07-300x101.png\";s:5:\"width\";i:300;s:6:\"height\";i:101;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5962;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"лого-для-сайту-07-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3592;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2162,162,'_wp_attached_file','2025/09/лого-для-сайту-06.png'),(2163,162,'iaff_wp_attachment_original_post_title','лого для сайту-06'),(2164,162,'_wp_attachment_image_alt','лого для сайту 06'),(2165,162,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:709;s:6:\"height\";i:210;s:4:\"file\";s:41:\"2025/09/лого-для-сайту-06.png\";s:8:\"filesize\";i:9320;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:40:\"лого-для-сайту-06-300x89.png\";s:5:\"width\";i:300;s:6:\"height\";i:89;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7797;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"лого-для-сайту-06-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2171;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2166,163,'_wp_attached_file','2025/09/лого-для-сайту-05.png'),(2167,163,'iaff_wp_attachment_original_post_title','лого для сайту-05'),(2168,163,'_wp_attachment_image_alt','лого для сайту 05'),(2169,163,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:626;s:6:\"height\";i:210;s:4:\"file\";s:41:\"2025/09/лого-для-сайту-05.png\";s:8:\"filesize\";i:9926;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"лого-для-сайту-05-300x101.png\";s:5:\"width\";i:300;s:6:\"height\";i:101;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8348;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"лого-для-сайту-05-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4950;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2170,164,'_wp_attached_file','2025/09/лого-для-сайту-04.png'),(2171,164,'iaff_wp_attachment_original_post_title','лого для сайту-04'),(2172,164,'_wp_attachment_image_alt','лого для сайту 04'),(2173,164,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:585;s:6:\"height\";i:210;s:4:\"file\";s:41:\"2025/09/лого-для-сайту-04.png\";s:8:\"filesize\";i:7601;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"лого-для-сайту-04-300x108.png\";s:5:\"width\";i:300;s:6:\"height\";i:108;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7332;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"лого-для-сайту-04-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3602;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2174,165,'_wp_attached_file','2025/09/лого-для-сайту-03.png'),(2175,165,'iaff_wp_attachment_original_post_title','лого для сайту-03'),(2176,165,'_wp_attachment_image_alt','лого для сайту 03'),(2177,165,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:543;s:6:\"height\";i:210;s:4:\"file\";s:41:\"2025/09/лого-для-сайту-03.png\";s:8:\"filesize\";i:9465;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"лого-для-сайту-03-300x116.png\";s:5:\"width\";i:300;s:6:\"height\";i:116;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10295;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"лого-для-сайту-03-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5519;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2178,166,'_wp_attached_file','2025/09/лого-для-сайту-02.png'),(2179,166,'iaff_wp_attachment_original_post_title','лого для сайту-02'),(2180,166,'_wp_attachment_image_alt','лого для сайту 02'),(2181,166,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:835;s:6:\"height\";i:210;s:4:\"file\";s:41:\"2025/09/лого-для-сайту-02.png\";s:8:\"filesize\";i:8673;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:40:\"лого-для-сайту-02-300x75.png\";s:5:\"width\";i:300;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6155;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"лого-для-сайту-02-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3548;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:41:\"лого-для-сайту-02-768x193.png\";s:5:\"width\";i:768;s:6:\"height\";i:193;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19427;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2182,167,'_wp_attached_file','2025/09/лого-для-сайту-01.png'),(2183,167,'iaff_wp_attachment_original_post_title','лого для сайту-01'),(2184,167,'_wp_attachment_image_alt','лого для сайту 01'),(2185,167,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:835;s:6:\"height\";i:210;s:4:\"file\";s:41:\"2025/09/лого-для-сайту-01.png\";s:8:\"filesize\";i:16925;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:40:\"лого-для-сайту-01-300x75.png\";s:5:\"width\";i:300;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12824;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"лого-для-сайту-01-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7996;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:41:\"лого-для-сайту-01-768x193.png\";s:5:\"width\";i:768;s:6:\"height\";i:193;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42559;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2186,168,'_wp_attached_file','2025/09/лого-для-сайту-10.png'),(2187,168,'iaff_wp_attachment_original_post_title','лого для сайту-10'),(2188,168,'_wp_attachment_image_alt','лого для сайту 10'),(2189,168,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:668;s:6:\"height\";i:210;s:4:\"file\";s:41:\"2025/09/лого-для-сайту-10.png\";s:8:\"filesize\";i:18158;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:40:\"лого-для-сайту-10-300x94.png\";s:5:\"width\";i:300;s:6:\"height\";i:94;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10098;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"лого-для-сайту-10-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7681;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2190,158,'hdr_tel','0630254440'),(2191,158,'_hdr_tel','field_6531b971a7cd7'),(2192,158,'ftr_fb','https://www.facebook.com/IT.SmartGT'),(2193,158,'_ftr_fb','field_6531b9d5a7cd8'),(2194,158,'ftr_inst','https://instagram.com/smart__gt?igshid=NGVhN2U2NjQ0Yg%3D%3D&utm_source=qr'),(2195,158,'_ftr_inst','field_6531ba80a7cd9'),(2196,158,'ftr_tg','https://t.me/smartgt_bot'),(2197,158,'_ftr_tg','field_6531bab1a7cda'),(2198,158,'services_0_service_title','консалтинг'),(2199,158,'_services_0_service_title','field_6531be7dcefff'),(2200,158,'services_0_service_bg','136'),(2201,158,'_services_0_service_bg','field_6531beabcf000'),(2202,158,'services_1_service_title','сайти'),(2203,158,'_services_1_service_title','field_6531be7dcefff'),(2204,158,'services_1_service_bg','129'),(2205,158,'_services_1_service_bg','field_6531beabcf000'),(2206,158,'services_2_service_title','інтернет-магазини + ERP + CRM'),(2207,158,'_services_2_service_title','field_6531be7dcefff'),(2208,158,'services_2_service_bg','127'),(2209,158,'_services_2_service_bg','field_6531beabcf000'),(2210,158,'services_3_service_title','SMM'),(2211,158,'_services_3_service_title','field_6531be7dcefff'),(2212,158,'services_3_service_bg','131'),(2213,158,'_services_3_service_bg','field_6531beabcf000'),(2214,158,'services_4_service_title','дизайн'),(2215,158,'_services_4_service_title','field_6531be7dcefff'),(2216,158,'services_4_service_bg','132'),(2217,158,'_services_4_service_bg','field_6531beabcf000'),(2218,158,'services','6'),(2219,158,'_services','field_6531be62ceffe'),(2220,158,'page_img',''),(2221,158,'_page_img','field_6531c3fef2244'),(2222,158,'masters_slogan','ВАШ КЛЮЧ ДО СУЧАСНОГО БІЗНЕСУ'),(2223,158,'_masters_slogan','field_6531c4b1bb5fc'),(2224,158,'form_slogan','Ми з вами зв’яжемося і візьмемо все у свої руки'),(2225,158,'_form_slogan','field_6531c538bb5fd'),(2226,158,'ftr_text','Всі права захищені'),(2227,158,'_ftr_text','field_6538ded69ca5a'),(2228,158,'trust_first','90'),(2229,158,'_trust_first','field_6617cb724f2b5'),(2230,158,'trust_second','167'),(2231,158,'_trust_second','field_6617cba54f2b7'),(2232,158,'trust_third','165'),(2233,158,'_trust_third','field_6617cbb84f2b9'),(2234,158,'trust_fourth','163'),(2235,158,'_trust_fourth','field_6617cbc54f2ba'),(2236,158,'trust_fifth','93'),(2237,158,'_trust_fifth','field_6617cbd94f2bb'),(2238,158,'trust_sixth','92'),(2239,158,'_trust_sixth','field_6617cbe34f2bc'),(2240,158,'trust_seventh','85'),(2241,158,'_trust_seventh','field_6617cd6d3419d'),(2242,158,'trust_eighth','154'),(2243,158,'_trust_eighth','field_6617cd8d3419e'),(2244,158,'trust_ninth','86'),(2245,158,'_trust_ninth','field_6617cdfa3419f'),(2246,158,'trust_tenth','87'),(2247,158,'_trust_tenth','field_6617ce3d341a1'),(2248,158,'trust_eleventh',''),(2249,158,'_trust_eleventh','field_6617ce5e341a2'),(2250,158,'trust_twelveth',''),(2251,158,'_trust_twelveth','field_6617ce87341a3'),(2252,158,'trust_thirteenth',''),(2253,158,'_trust_thirteenth','field_6617cea3341a4'),(2254,158,'background_image','97'),(2255,158,'_background_image','field_66183a4e40966'),(2256,158,'trust_title','Нам <br> довіряють'),(2257,158,'_trust_title','field_66183c379f37a'),(2258,158,'background_image_2','104'),(2259,158,'_background_image_2','field_661add483a8b0'),(2260,158,'trust_title_first','Нам'),(2261,158,'_trust_title_first','field_66183c379f37a'),(2262,158,'trust_title_second','довіряють'),(2263,158,'_trust_title_second','field_661ae9631502b'),(2264,158,'trust_first_link','https://scb.ua'),(2265,158,'_trust_first_link','field_66202630e7608'),(2266,158,'trust_second_link','https://ligamaistriv.com.ua/'),(2267,158,'_trust_second_link','field_66202866e7609'),(2268,158,'trust_third_link','https://svit-pro.com.ua/'),(2269,158,'_trust_third_link','field_66202905e760a'),(2270,158,'trust_fourth_link','https://xn----ctbtc0bhbg8h9c.xn--j1amh/'),(2271,158,'_trust_fourth_link','field_66202950e760b'),(2272,158,'trust_fifth_link',''),(2273,158,'_trust_fifth_link','field_66202965e760c'),(2274,158,'trust_sixth_link','https://vimax-bud.com.ua/'),(2275,158,'_trust_sixth_link','field_662029a0e760d'),(2276,158,'trust_seventh_link',''),(2277,158,'_trust_seventh_link','field_662029c4e760e'),(2278,158,'trust_eighth_link','https://polimin.ua/'),(2279,158,'_trust_eighth_link','field_66202a1ae760f'),(2280,158,'trust_ninth_link','https://ukrbezpekabud.com.ua/'),(2281,158,'_trust_ninth_link','field_66202a33e7610'),(2282,158,'trust_tenth_link',''),(2283,158,'_trust_tenth_link','field_66202a5ce7611'),(2284,158,'trust_eleventh_link','https://www.keramaexpert.ua/'),(2285,158,'_trust_eleventh_link','field_66202a6de7612'),(2286,158,'trust_twelveth_link','https://mv-delivery.com.ua/'),(2287,158,'_trust_twelveth_link','field_66202a8de7613'),(2288,158,'trust_thirteenth_link','https://mira.ua/'),(2289,158,'_trust_thirteenth_link','field_66202adee7614'),(2290,158,'services_5_service_title','чат-боти'),(2291,158,'_services_5_service_title','field_6531be7dcefff'),(2292,158,'services_5_service_bg','28'),(2293,158,'_services_5_service_bg','field_6531beabcf000'),(2294,170,'_wp_attached_file','2025/09/лого-для-сайту-11.png'),(2295,170,'iaff_wp_attachment_original_post_title','лого для сайту-11'),(2296,170,'_wp_attachment_image_alt','лого для сайту 11'),(2297,170,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:64;s:6:\"height\";i:40;s:4:\"file\";s:41:\"2025/09/лого-для-сайту-11.png\";s:8:\"filesize\";i:4869;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:{}}}'),(2298,171,'_wp_attached_file','2025/09/лого-для-сайту-12.png'),(2299,171,'iaff_wp_attachment_original_post_title','лого для сайту-12'),(2300,171,'_wp_attachment_image_alt','лого для сайту 12'),(2301,171,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:103;s:6:\"height\";i:40;s:4:\"file\";s:41:\"2025/09/лого-для-сайту-12.png\";s:8:\"filesize\";i:6819;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:{}}}'),(2302,172,'_wp_attached_file','2025/09/лого-для-сайту-09-1.png'),(2303,172,'iaff_wp_attachment_original_post_title','лого для сайту-09'),(2304,172,'_wp_attachment_image_alt','лого для сайту 09'),(2305,172,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:119;s:6:\"height\";i:40;s:4:\"file\";s:43:\"2025/09/лого-для-сайту-09-1.png\";s:8:\"filesize\";i:7107;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:{}}}'),(2306,173,'_wp_attached_file','2025/09/лого-для-сайту-08-1.png'),(2307,173,'iaff_wp_attachment_original_post_title','лого для сайту-08'),(2308,173,'_wp_attachment_image_alt','лого для сайту 08'),(2309,173,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:127;s:6:\"height\";i:40;s:4:\"file\";s:43:\"2025/09/лого-для-сайту-08-1.png\";s:8:\"filesize\";i:5590;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:{}}}'),(2310,174,'_wp_attached_file','2025/09/лого-для-сайту-07-1.png'),(2311,174,'iaff_wp_attachment_original_post_title','лого для сайту-07'),(2312,174,'_wp_attachment_image_alt','лого для сайту 07'),(2313,174,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:119;s:6:\"height\";i:40;s:4:\"file\";s:43:\"2025/09/лого-для-сайту-07-1.png\";s:8:\"filesize\";i:6248;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:{}}}'),(2314,175,'_wp_attached_file','2025/09/лого-для-сайту-06-1.png'),(2315,175,'iaff_wp_attachment_original_post_title','лого для сайту-06'),(2316,175,'_wp_attachment_image_alt','лого для сайту 06'),(2317,175,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:135;s:6:\"height\";i:40;s:4:\"file\";s:43:\"2025/09/лого-для-сайту-06-1.png\";s:8:\"filesize\";i:6854;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:{}}}'),(2318,176,'_wp_attached_file','2025/09/лого-для-сайту-05-1.png'),(2319,176,'iaff_wp_attachment_original_post_title','лого для сайту-05'),(2320,176,'_wp_attachment_image_alt','лого для сайту 05'),(2321,176,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:119;s:6:\"height\";i:40;s:4:\"file\";s:43:\"2025/09/лого-для-сайту-05-1.png\";s:8:\"filesize\";i:6046;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:{}}}'),(2322,177,'_wp_attached_file','2025/09/лого-для-сайту-04-1.png'),(2323,177,'iaff_wp_attachment_original_post_title','лого для сайту-04'),(2324,177,'_wp_attachment_image_alt','лого для сайту 04'),(2325,177,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:111;s:6:\"height\";i:40;s:4:\"file\";s:43:\"2025/09/лого-для-сайту-04-1.png\";s:8:\"filesize\";i:5398;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:{}}}'),(2326,178,'_wp_attached_file','2025/09/лого-для-сайту-03-1.png'),(2327,178,'iaff_wp_attachment_original_post_title','лого для сайту-03'),(2328,178,'_wp_attachment_image_alt','лого для сайту 03'),(2329,178,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:103;s:6:\"height\";i:40;s:4:\"file\";s:43:\"2025/09/лого-для-сайту-03-1.png\";s:8:\"filesize\";i:5875;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:{}}}'),(2330,179,'_wp_attached_file','2025/09/лого-для-сайту-02-1.png'),(2331,179,'iaff_wp_attachment_original_post_title','лого для сайту-02'),(2332,179,'_wp_attachment_image_alt','лого для сайту 02'),(2333,179,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:159;s:6:\"height\";i:40;s:4:\"file\";s:43:\"2025/09/лого-для-сайту-02-1.png\";s:8:\"filesize\";i:5505;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"лого-для-сайту-02-1-150x40.png\";s:5:\"width\";i:150;s:6:\"height\";i:40;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4983;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2334,180,'_wp_attached_file','2025/09/лого-для-сайту-01-1.png'),(2335,180,'iaff_wp_attachment_original_post_title','лого для сайту-01'),(2336,180,'_wp_attachment_image_alt','лого для сайту 01'),(2337,180,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:159;s:6:\"height\";i:40;s:4:\"file\";s:43:\"2025/09/лого-для-сайту-01-1.png\";s:8:\"filesize\";i:6769;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"лого-для-сайту-01-1-150x40.png\";s:5:\"width\";i:150;s:6:\"height\";i:40;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6988;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2338,181,'_wp_attached_file','2025/09/лого-для-сайту-10-1.png'),(2339,181,'iaff_wp_attachment_original_post_title','лого для сайту-10'),(2340,181,'_wp_attachment_image_alt','лого для сайту 10'),(2341,181,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:127;s:6:\"height\";i:40;s:4:\"file\";s:43:\"2025/09/лого-для-сайту-10-1.png\";s:8:\"filesize\";i:6739;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:{}}}'),(2342,169,'hdr_tel','0630254440'),(2343,169,'_hdr_tel','field_6531b971a7cd7'),(2344,169,'ftr_fb','https://www.facebook.com/IT.SmartGT'),(2345,169,'_ftr_fb','field_6531b9d5a7cd8'),(2346,169,'ftr_inst','https://instagram.com/smart__gt?igshid=NGVhN2U2NjQ0Yg%3D%3D&utm_source=qr'),(2347,169,'_ftr_inst','field_6531ba80a7cd9'),(2348,169,'ftr_tg','https://t.me/smartgt_bot'),(2349,169,'_ftr_tg','field_6531bab1a7cda'),(2350,169,'services_0_service_title','консалтинг'),(2351,169,'_services_0_service_title','field_6531be7dcefff'),(2352,169,'services_0_service_bg','136'),(2353,169,'_services_0_service_bg','field_6531beabcf000'),(2354,169,'services_1_service_title','сайти'),(2355,169,'_services_1_service_title','field_6531be7dcefff'),(2356,169,'services_1_service_bg','129'),(2357,169,'_services_1_service_bg','field_6531beabcf000'),(2358,169,'services_2_service_title','інтернет-магазини + ERP + CRM'),(2359,169,'_services_2_service_title','field_6531be7dcefff'),(2360,169,'services_2_service_bg','127'),(2361,169,'_services_2_service_bg','field_6531beabcf000'),(2362,169,'services_3_service_title','SMM'),(2363,169,'_services_3_service_title','field_6531be7dcefff'),(2364,169,'services_3_service_bg','131'),(2365,169,'_services_3_service_bg','field_6531beabcf000'),(2366,169,'services_4_service_title','дизайн'),(2367,169,'_services_4_service_title','field_6531be7dcefff'),(2368,169,'services_4_service_bg','132'),(2369,169,'_services_4_service_bg','field_6531beabcf000'),(2370,169,'services','6'),(2371,169,'_services','field_6531be62ceffe'),(2372,169,'page_img',''),(2373,169,'_page_img','field_6531c3fef2244'),(2374,169,'masters_slogan','ВАШ КЛЮЧ ДО СУЧАСНОГО БІЗНЕСУ'),(2375,169,'_masters_slogan','field_6531c4b1bb5fc'),(2376,169,'form_slogan','Ми з вами зв’яжемося і візьмемо все у свої руки'),(2377,169,'_form_slogan','field_6531c538bb5fd'),(2378,169,'ftr_text','Всі права захищені'),(2379,169,'_ftr_text','field_6538ded69ca5a'),(2380,169,'trust_first','171'),(2381,169,'_trust_first','field_6617cb724f2b5'),(2382,169,'trust_second','180'),(2383,169,'_trust_second','field_6617cba54f2b7'),(2384,169,'trust_third','178'),(2385,169,'_trust_third','field_6617cbb84f2b9'),(2386,169,'trust_fourth','176'),(2387,169,'_trust_fourth','field_6617cbc54f2ba'),(2388,169,'trust_fifth','170'),(2389,169,'_trust_fifth','field_6617cbd94f2bb'),(2390,169,'trust_sixth','175'),(2391,169,'_trust_sixth','field_6617cbe34f2bc'),(2392,169,'trust_seventh','86'),(2393,169,'_trust_seventh','field_6617cd6d3419d'),(2394,169,'trust_eighth','179'),(2395,169,'_trust_eighth','field_6617cd8d3419e'),(2396,169,'trust_ninth','173'),(2397,169,'_trust_ninth','field_6617cdfa3419f'),(2398,169,'trust_tenth','172'),(2399,169,'_trust_tenth','field_6617ce3d341a1'),(2400,169,'trust_eleventh','174'),(2401,169,'_trust_eleventh','field_6617ce5e341a2'),(2402,169,'trust_twelveth','181'),(2403,169,'_trust_twelveth','field_6617ce87341a3'),(2404,169,'trust_thirteenth','177'),(2405,169,'_trust_thirteenth','field_6617cea3341a4'),(2406,169,'background_image','97'),(2407,169,'_background_image','field_66183a4e40966'),(2408,169,'trust_title','Нам <br> довіряють'),(2409,169,'_trust_title','field_66183c379f37a'),(2410,169,'background_image_2','104'),(2411,169,'_background_image_2','field_661add483a8b0'),(2412,169,'trust_title_first','Нам'),(2413,169,'_trust_title_first','field_66183c379f37a'),(2414,169,'trust_title_second','довіряють'),(2415,169,'_trust_title_second','field_661ae9631502b'),(2416,169,'trust_first_link','https://scb.ua'),(2417,169,'_trust_first_link','field_66202630e7608'),(2418,169,'trust_second_link','https://ligamaistriv.com.ua/'),(2419,169,'_trust_second_link','field_66202866e7609'),(2420,169,'trust_third_link','https://svit-pro.com.ua/'),(2421,169,'_trust_third_link','field_66202905e760a'),(2422,169,'trust_fourth_link','https://xn----ctbtc0bhbg8h9c.xn--j1amh/'),(2423,169,'_trust_fourth_link','field_66202950e760b'),(2424,169,'trust_fifth_link',''),(2425,169,'_trust_fifth_link','field_66202965e760c'),(2426,169,'trust_sixth_link','https://vimax-bud.com.ua/'),(2427,169,'_trust_sixth_link','field_662029a0e760d'),(2428,169,'trust_seventh_link',''),(2429,169,'_trust_seventh_link','field_662029c4e760e'),(2430,169,'trust_eighth_link','https://polimin.ua/'),(2431,169,'_trust_eighth_link','field_66202a1ae760f'),(2432,169,'trust_ninth_link','https://ukrbezpekabud.com.ua/'),(2433,169,'_trust_ninth_link','field_66202a33e7610'),(2434,169,'trust_tenth_link',''),(2435,169,'_trust_tenth_link','field_66202a5ce7611'),(2436,169,'trust_eleventh_link','https://www.keramaexpert.ua/'),(2437,169,'_trust_eleventh_link','field_66202a6de7612'),(2438,169,'trust_twelveth_link','https://mv-delivery.com.ua/'),(2439,169,'_trust_twelveth_link','field_66202a8de7613'),(2440,169,'trust_thirteenth_link','https://mira.ua/'),(2441,169,'_trust_thirteenth_link','field_66202adee7614'),(2442,169,'services_5_service_title','чат-боти'),(2443,169,'_services_5_service_title','field_6531be7dcefff'),(2444,169,'services_5_service_bg','28'),(2445,169,'_services_5_service_bg','field_6531beabcf000'),(2446,182,'hdr_tel','0630254440'),(2447,182,'_hdr_tel','field_6531b971a7cd7'),(2448,182,'ftr_fb','https://www.facebook.com/IT.SmartGT'),(2449,182,'_ftr_fb','field_6531b9d5a7cd8'),(2450,182,'ftr_inst','https://instagram.com/smart__gt?igshid=NGVhN2U2NjQ0Yg%3D%3D&utm_source=qr'),(2451,182,'_ftr_inst','field_6531ba80a7cd9'),(2452,182,'ftr_tg','https://t.me/smartgt_bot'),(2453,182,'_ftr_tg','field_6531bab1a7cda'),(2454,182,'services_0_service_title','консалтинг'),(2455,182,'_services_0_service_title','field_6531be7dcefff'),(2456,182,'services_0_service_bg','136'),(2457,182,'_services_0_service_bg','field_6531beabcf000'),(2458,182,'services_1_service_title','сайти'),(2459,182,'_services_1_service_title','field_6531be7dcefff'),(2460,182,'services_1_service_bg','129'),(2461,182,'_services_1_service_bg','field_6531beabcf000'),(2462,182,'services_2_service_title','інтернет-магазини + ERP + CRM'),(2463,182,'_services_2_service_title','field_6531be7dcefff'),(2464,182,'services_2_service_bg','127'),(2465,182,'_services_2_service_bg','field_6531beabcf000'),(2466,182,'services_3_service_title','SMM'),(2467,182,'_services_3_service_title','field_6531be7dcefff'),(2468,182,'services_3_service_bg','131'),(2469,182,'_services_3_service_bg','field_6531beabcf000'),(2470,182,'services_4_service_title','дизайн'),(2471,182,'_services_4_service_title','field_6531be7dcefff'),(2472,182,'services_4_service_bg','132'),(2473,182,'_services_4_service_bg','field_6531beabcf000'),(2474,182,'services','6'),(2475,182,'_services','field_6531be62ceffe'),(2476,182,'page_img',''),(2477,182,'_page_img','field_6531c3fef2244'),(2478,182,'masters_slogan','ВАШ КЛЮЧ ДО СУЧАСНОГО БІЗНЕСУ'),(2479,182,'_masters_slogan','field_6531c4b1bb5fc'),(2480,182,'form_slogan','Ми з вами зв’яжемося і візьмемо все у свої руки'),(2481,182,'_form_slogan','field_6531c538bb5fd'),(2482,182,'ftr_text','Всі права захищені'),(2483,182,'_ftr_text','field_6538ded69ca5a'),(2484,182,'trust_first','171'),(2485,182,'_trust_first','field_6617cb724f2b5'),(2486,182,'trust_second','180'),(2487,182,'_trust_second','field_6617cba54f2b7'),(2488,182,'trust_third','178'),(2489,182,'_trust_third','field_6617cbb84f2b9'),(2490,182,'trust_fourth','176'),(2491,182,'_trust_fourth','field_6617cbc54f2ba'),(2492,182,'trust_fifth','170'),(2493,182,'_trust_fifth','field_6617cbd94f2bb'),(2494,182,'trust_sixth','175'),(2495,182,'_trust_sixth','field_6617cbe34f2bc'),(2496,182,'trust_seventh',''),(2497,182,'_trust_seventh','field_6617cd6d3419d'),(2498,182,'trust_eighth','179'),(2499,182,'_trust_eighth','field_6617cd8d3419e'),(2500,182,'trust_ninth','173'),(2501,182,'_trust_ninth','field_6617cdfa3419f'),(2502,182,'trust_tenth','172'),(2503,182,'_trust_tenth','field_6617ce3d341a1'),(2504,182,'trust_eleventh','174'),(2505,182,'_trust_eleventh','field_6617ce5e341a2'),(2506,182,'trust_twelveth','181'),(2507,182,'_trust_twelveth','field_6617ce87341a3'),(2508,182,'trust_thirteenth','177'),(2509,182,'_trust_thirteenth','field_6617cea3341a4'),(2510,182,'background_image','97'),(2511,182,'_background_image','field_66183a4e40966'),(2512,182,'trust_title','Нам <br> довіряють'),(2513,182,'_trust_title','field_66183c379f37a'),(2514,182,'background_image_2','104'),(2515,182,'_background_image_2','field_661add483a8b0'),(2516,182,'trust_title_first','Нам'),(2517,182,'_trust_title_first','field_66183c379f37a'),(2518,182,'trust_title_second','довіряють'),(2519,182,'_trust_title_second','field_661ae9631502b'),(2520,182,'trust_first_link','https://scb.ua'),(2521,182,'_trust_first_link','field_66202630e7608'),(2522,182,'trust_second_link','https://ligamaistriv.com.ua/'),(2523,182,'_trust_second_link','field_66202866e7609'),(2524,182,'trust_third_link','https://svit-pro.com.ua/'),(2525,182,'_trust_third_link','field_66202905e760a'),(2526,182,'trust_fourth_link','https://xn----ctbtc0bhbg8h9c.xn--j1amh/'),(2527,182,'_trust_fourth_link','field_66202950e760b'),(2528,182,'trust_fifth_link',''),(2529,182,'_trust_fifth_link','field_66202965e760c'),(2530,182,'trust_sixth_link','https://vimax-bud.com.ua/'),(2531,182,'_trust_sixth_link','field_662029a0e760d'),(2532,182,'trust_seventh_link',''),(2533,182,'_trust_seventh_link','field_662029c4e760e'),(2534,182,'trust_eighth_link','https://polimin.ua/'),(2535,182,'_trust_eighth_link','field_66202a1ae760f'),(2536,182,'trust_ninth_link','https://ukrbezpekabud.com.ua/'),(2537,182,'_trust_ninth_link','field_66202a33e7610'),(2538,182,'trust_tenth_link',''),(2539,182,'_trust_tenth_link','field_66202a5ce7611'),(2540,182,'trust_eleventh_link','https://www.keramaexpert.ua/'),(2541,182,'_trust_eleventh_link','field_66202a6de7612'),(2542,182,'trust_twelveth_link','https://mv-delivery.com.ua/'),(2543,182,'_trust_twelveth_link','field_66202a8de7613'),(2544,182,'trust_thirteenth_link','https://mira.ua/'),(2545,182,'_trust_thirteenth_link','field_66202adee7614'),(2546,182,'services_5_service_title','чат-боти'),(2547,182,'_services_5_service_title','field_6531be7dcefff'),(2548,182,'services_5_service_bg','28'),(2549,182,'_services_5_service_bg','field_6531beabcf000'),(2550,183,'hdr_tel','0630254440'),(2551,183,'_hdr_tel','field_6531b971a7cd7'),(2552,183,'ftr_fb','https://www.facebook.com/IT.SmartGT'),(2553,183,'_ftr_fb','field_6531b9d5a7cd8'),(2554,183,'ftr_inst','https://instagram.com/smart__gt?igshid=NGVhN2U2NjQ0Yg%3D%3D&utm_source=qr'),(2555,183,'_ftr_inst','field_6531ba80a7cd9'),(2556,183,'ftr_tg','https://t.me/smartgt_bot'),(2557,183,'_ftr_tg','field_6531bab1a7cda'),(2558,183,'services_0_service_title','консалтинг'),(2559,183,'_services_0_service_title','field_6531be7dcefff'),(2560,183,'services_0_service_bg','136'),(2561,183,'_services_0_service_bg','field_6531beabcf000'),(2562,183,'services_1_service_title','сайти'),(2563,183,'_services_1_service_title','field_6531be7dcefff'),(2564,183,'services_1_service_bg','129'),(2565,183,'_services_1_service_bg','field_6531beabcf000'),(2566,183,'services_2_service_title','інтернет-магазини + ERP + CRM'),(2567,183,'_services_2_service_title','field_6531be7dcefff'),(2568,183,'services_2_service_bg','127'),(2569,183,'_services_2_service_bg','field_6531beabcf000'),(2570,183,'services_3_service_title','SMM'),(2571,183,'_services_3_service_title','field_6531be7dcefff'),(2572,183,'services_3_service_bg','131'),(2573,183,'_services_3_service_bg','field_6531beabcf000'),(2574,183,'services_4_service_title','дизайн'),(2575,183,'_services_4_service_title','field_6531be7dcefff'),(2576,183,'services_4_service_bg','132'),(2577,183,'_services_4_service_bg','field_6531beabcf000'),(2578,183,'services','6'),(2579,183,'_services','field_6531be62ceffe'),(2580,183,'page_img',''),(2581,183,'_page_img','field_6531c3fef2244'),(2582,183,'masters_slogan','ВАШ КЛЮЧ ДО СУЧАСНОГО БІЗНЕСУ'),(2583,183,'_masters_slogan','field_6531c4b1bb5fc'),(2584,183,'form_slogan','Ми з вами зв’яжемося і візьмемо все у свої руки'),(2585,183,'_form_slogan','field_6531c538bb5fd'),(2586,183,'ftr_text','Всі права захищені'),(2587,183,'_ftr_text','field_6538ded69ca5a'),(2588,183,'trust_first','171'),(2589,183,'_trust_first','field_6617cb724f2b5'),(2590,183,'trust_second','180'),(2591,183,'_trust_second','field_6617cba54f2b7'),(2592,183,'trust_third','178'),(2593,183,'_trust_third','field_6617cbb84f2b9'),(2594,183,'trust_fourth','176'),(2595,183,'_trust_fourth','field_6617cbc54f2ba'),(2596,183,'trust_fifth','170'),(2597,183,'_trust_fifth','field_6617cbd94f2bb'),(2598,183,'trust_sixth','175'),(2599,183,'_trust_sixth','field_6617cbe34f2bc'),(2600,183,'trust_seventh',''),(2601,183,'_trust_seventh','field_6617cd6d3419d'),(2602,183,'trust_eighth','179'),(2603,183,'_trust_eighth','field_6617cd8d3419e'),(2604,183,'trust_ninth','173'),(2605,183,'_trust_ninth','field_6617cdfa3419f'),(2606,183,'trust_tenth','172'),(2607,183,'_trust_tenth','field_6617ce3d341a1'),(2608,183,'trust_eleventh','174'),(2609,183,'_trust_eleventh','field_6617ce5e341a2'),(2610,183,'trust_twelveth','181'),(2611,183,'_trust_twelveth','field_6617ce87341a3'),(2612,183,'trust_thirteenth','177'),(2613,183,'_trust_thirteenth','field_6617cea3341a4'),(2614,183,'background_image','97'),(2615,183,'_background_image','field_66183a4e40966'),(2616,183,'trust_title','Нам <br> довіряють'),(2617,183,'_trust_title','field_66183c379f37a'),(2618,183,'background_image_2','104'),(2619,183,'_background_image_2','field_661add483a8b0'),(2620,183,'trust_title_first','Нам'),(2621,183,'_trust_title_first','field_66183c379f37a'),(2622,183,'trust_title_second','довіряють'),(2623,183,'_trust_title_second','field_661ae9631502b'),(2624,183,'trust_first_link','https://scb.ua'),(2625,183,'_trust_first_link','field_66202630e7608'),(2626,183,'trust_second_link','https://ligamaistriv.com.ua/'),(2627,183,'_trust_second_link','field_66202866e7609'),(2628,183,'trust_third_link','https://xn----ctbtc0bhbg8h9c.xn--j1amh/'),(2629,183,'_trust_third_link','field_66202905e760a'),(2630,183,'trust_fourth_link','https://fado.ua/'),(2631,183,'_trust_fourth_link','field_66202950e760b'),(2632,183,'trust_fifth_link','https://ravago.com/'),(2633,183,'_trust_fifth_link','field_66202965e760c'),(2634,183,'trust_sixth_link','https://vimax-bud.com.ua/'),(2635,183,'_trust_sixth_link','field_662029a0e760d'),(2636,183,'trust_seventh_link',''),(2637,183,'_trust_seventh_link','field_662029c4e760e'),(2638,183,'trust_eighth_link','https://polimin.ua/'),(2639,183,'_trust_eighth_link','field_66202a1ae760f'),(2640,183,'trust_ninth_link','http://onteplo.com.ua'),(2641,183,'_trust_ninth_link','field_66202a33e7610'),(2642,183,'trust_tenth_link','https://www.keramaexpert.ua'),(2643,183,'_trust_tenth_link','field_66202a5ce7611'),(2644,183,'trust_eleventh_link','https://edup.org.ua/'),(2645,183,'_trust_eleventh_link','field_66202a6de7612'),(2646,183,'trust_twelveth_link','https://specservis.com.ua'),(2647,183,'_trust_twelveth_link','field_66202a8de7613'),(2648,183,'trust_thirteenth_link','https://mira.ua/'),(2649,183,'_trust_thirteenth_link','field_66202adee7614'),(2650,183,'services_5_service_title','чат-боти'),(2651,183,'_services_5_service_title','field_6531be7dcefff'),(2652,183,'services_5_service_bg','28'),(2653,183,'_services_5_service_bg','field_6531beabcf000'),(2654,184,'hdr_tel','0630254440'),(2655,184,'_hdr_tel','field_6531b971a7cd7'),(2656,184,'ftr_fb','https://www.facebook.com/IT.SmartGT'),(2657,184,'_ftr_fb','field_6531b9d5a7cd8'),(2658,184,'ftr_inst','https://instagram.com/smart__gt?igshid=NGVhN2U2NjQ0Yg%3D%3D&utm_source=qr'),(2659,184,'_ftr_inst','field_6531ba80a7cd9'),(2660,184,'ftr_tg','https://t.me/smartgt_bot'),(2661,184,'_ftr_tg','field_6531bab1a7cda'),(2662,184,'services_0_service_title','консалтинг'),(2663,184,'_services_0_service_title','field_6531be7dcefff'),(2664,184,'services_0_service_bg','136'),(2665,184,'_services_0_service_bg','field_6531beabcf000'),(2666,184,'services_1_service_title','сайти'),(2667,184,'_services_1_service_title','field_6531be7dcefff'),(2668,184,'services_1_service_bg','129'),(2669,184,'_services_1_service_bg','field_6531beabcf000'),(2670,184,'services_2_service_title','інтернет-магазини + ERP + CRM'),(2671,184,'_services_2_service_title','field_6531be7dcefff'),(2672,184,'services_2_service_bg','127'),(2673,184,'_services_2_service_bg','field_6531beabcf000'),(2674,184,'services_3_service_title','SMM'),(2675,184,'_services_3_service_title','field_6531be7dcefff'),(2676,184,'services_3_service_bg','131'),(2677,184,'_services_3_service_bg','field_6531beabcf000'),(2678,184,'services_4_service_title','дизайн'),(2679,184,'_services_4_service_title','field_6531be7dcefff'),(2680,184,'services_4_service_bg','132'),(2681,184,'_services_4_service_bg','field_6531beabcf000'),(2682,184,'services','6'),(2683,184,'_services','field_6531be62ceffe'),(2684,184,'page_img',''),(2685,184,'_page_img','field_6531c3fef2244'),(2686,184,'masters_slogan','ВАШ КЛЮЧ ДО СУЧАСНОГО БІЗНЕСУ'),(2687,184,'_masters_slogan','field_6531c4b1bb5fc'),(2688,184,'form_slogan','Ми з вами зв’яжемося і візьмемо все у свої руки'),(2689,184,'_form_slogan','field_6531c538bb5fd'),(2690,184,'ftr_text','Всі права захищені'),(2691,184,'_ftr_text','field_6538ded69ca5a'),(2692,184,'trust_first','171'),(2693,184,'_trust_first','field_6617cb724f2b5'),(2694,184,'trust_second','180'),(2695,184,'_trust_second','field_6617cba54f2b7'),(2696,184,'trust_third','149'),(2697,184,'_trust_third','field_6617cbb84f2b9'),(2698,184,'trust_fourth','176'),(2699,184,'_trust_fourth','field_6617cbc54f2ba'),(2700,184,'trust_fifth','170'),(2701,184,'_trust_fifth','field_6617cbd94f2bb'),(2702,184,'trust_sixth','175'),(2703,184,'_trust_sixth','field_6617cbe34f2bc'),(2704,184,'trust_seventh',''),(2705,184,'_trust_seventh','field_6617cd6d3419d'),(2706,184,'trust_eighth','179'),(2707,184,'_trust_eighth','field_6617cd8d3419e'),(2708,184,'trust_ninth','173'),(2709,184,'_trust_ninth','field_6617cdfa3419f'),(2710,184,'trust_tenth','172'),(2711,184,'_trust_tenth','field_6617ce3d341a1'),(2712,184,'trust_eleventh','174'),(2713,184,'_trust_eleventh','field_6617ce5e341a2'),(2714,184,'trust_twelveth','181'),(2715,184,'_trust_twelveth','field_6617ce87341a3'),(2716,184,'trust_thirteenth','177'),(2717,184,'_trust_thirteenth','field_6617cea3341a4'),(2718,184,'background_image','97'),(2719,184,'_background_image','field_66183a4e40966'),(2720,184,'trust_title','Нам <br> довіряють'),(2721,184,'_trust_title','field_66183c379f37a'),(2722,184,'background_image_2','104'),(2723,184,'_background_image_2','field_661add483a8b0'),(2724,184,'trust_title_first','Нам'),(2725,184,'_trust_title_first','field_66183c379f37a'),(2726,184,'trust_title_second','довіряють'),(2727,184,'_trust_title_second','field_661ae9631502b'),(2728,184,'trust_first_link','https://scb.ua'),(2729,184,'_trust_first_link','field_66202630e7608'),(2730,184,'trust_second_link','https://ligamaistriv.com.ua/'),(2731,184,'_trust_second_link','field_66202866e7609'),(2732,184,'trust_third_link','https://xn----ctbtc0bhbg8h9c.xn--j1amh/'),(2733,184,'_trust_third_link','field_66202905e760a'),(2734,184,'trust_fourth_link','https://fado.ua/'),(2735,184,'_trust_fourth_link','field_66202950e760b'),(2736,184,'trust_fifth_link','https://ravago.com/'),(2737,184,'_trust_fifth_link','field_66202965e760c'),(2738,184,'trust_sixth_link','https://vimax-bud.com.ua/'),(2739,184,'_trust_sixth_link','field_662029a0e760d'),(2740,184,'trust_seventh_link',''),(2741,184,'_trust_seventh_link','field_662029c4e760e'),(2742,184,'trust_eighth_link','https://polimin.ua/'),(2743,184,'_trust_eighth_link','field_66202a1ae760f'),(2744,184,'trust_ninth_link','http://onteplo.com.ua'),(2745,184,'_trust_ninth_link','field_66202a33e7610'),(2746,184,'trust_tenth_link','https://www.keramaexpert.ua'),(2747,184,'_trust_tenth_link','field_66202a5ce7611'),(2748,184,'trust_eleventh_link','https://edup.org.ua/'),(2749,184,'_trust_eleventh_link','field_66202a6de7612'),(2750,184,'trust_twelveth_link','https://specservis.com.ua'),(2751,184,'_trust_twelveth_link','field_66202a8de7613'),(2752,184,'trust_thirteenth_link','https://mira.ua/'),(2753,184,'_trust_thirteenth_link','field_66202adee7614'),(2754,184,'services_5_service_title','чат-боти'),(2755,184,'_services_5_service_title','field_6531be7dcefff'),(2756,184,'services_5_service_bg','28'),(2757,184,'_services_5_service_bg','field_6531beabcf000'),(2758,186,'hdr_tel','0630254440'),(2759,186,'_hdr_tel','field_6531b971a7cd7'),(2760,186,'ftr_fb','https://www.facebook.com/IT.SmartGT'),(2761,186,'_ftr_fb','field_6531b9d5a7cd8'),(2762,186,'ftr_inst','https://instagram.com/smart__gt?igshid=NGVhN2U2NjQ0Yg%3D%3D&utm_source=qr'),(2763,186,'_ftr_inst','field_6531ba80a7cd9'),(2764,186,'ftr_tg','https://t.me/smartgt_bot'),(2765,186,'_ftr_tg','field_6531bab1a7cda'),(2766,186,'services_0_service_title','консалтинг'),(2767,186,'_services_0_service_title','field_6531be7dcefff'),(2768,186,'services_0_service_bg','136'),(2769,186,'_services_0_service_bg','field_6531beabcf000'),(2770,186,'services_1_service_title','сайти'),(2771,186,'_services_1_service_title','field_6531be7dcefff'),(2772,186,'services_1_service_bg','129'),(2773,186,'_services_1_service_bg','field_6531beabcf000'),(2774,186,'services_2_service_title','інтернет-магазини + ERP + CRM'),(2775,186,'_services_2_service_title','field_6531be7dcefff'),(2776,186,'services_2_service_bg','127'),(2777,186,'_services_2_service_bg','field_6531beabcf000'),(2778,186,'services_3_service_title','SMM'),(2779,186,'_services_3_service_title','field_6531be7dcefff'),(2780,186,'services_3_service_bg','131'),(2781,186,'_services_3_service_bg','field_6531beabcf000'),(2782,186,'services_4_service_title','дизайн'),(2783,186,'_services_4_service_title','field_6531be7dcefff'),(2784,186,'services_4_service_bg','132'),(2785,186,'_services_4_service_bg','field_6531beabcf000'),(2786,186,'services','6'),(2787,186,'_services','field_6531be62ceffe'),(2788,186,'page_img',''),(2789,186,'_page_img','field_6531c3fef2244'),(2790,186,'masters_slogan','ВАШ КЛЮЧ ДО СУЧАСНОГО БІЗНЕСУ'),(2791,186,'_masters_slogan','field_6531c4b1bb5fc'),(2792,186,'form_slogan','Ми з вами зв’яжемося і візьмемо все у свої руки'),(2793,186,'_form_slogan','field_6531c538bb5fd'),(2794,186,'ftr_text','Всі права захищені'),(2795,186,'_ftr_text','field_6538ded69ca5a'),(2796,186,'trust_first','171'),(2797,186,'_trust_first','field_6617cb724f2b5'),(2798,186,'trust_second','180'),(2799,186,'_trust_second','field_6617cba54f2b7'),(2800,186,'trust_third','178'),(2801,186,'_trust_third','field_6617cbb84f2b9'),(2802,186,'trust_fourth','176'),(2803,186,'_trust_fourth','field_6617cbc54f2ba'),(2804,186,'trust_fifth','170'),(2805,186,'_trust_fifth','field_6617cbd94f2bb'),(2806,186,'trust_sixth','175'),(2807,186,'_trust_sixth','field_6617cbe34f2bc'),(2808,186,'trust_seventh',''),(2809,186,'_trust_seventh','field_6617cd6d3419d'),(2810,186,'trust_eighth','179'),(2811,186,'_trust_eighth','field_6617cd8d3419e'),(2812,186,'trust_ninth','173'),(2813,186,'_trust_ninth','field_6617cdfa3419f'),(2814,186,'trust_tenth','172'),(2815,186,'_trust_tenth','field_6617ce3d341a1'),(2816,186,'trust_eleventh','174'),(2817,186,'_trust_eleventh','field_6617ce5e341a2'),(2818,186,'trust_twelveth','181'),(2819,186,'_trust_twelveth','field_6617ce87341a3'),(2820,186,'trust_thirteenth','177'),(2821,186,'_trust_thirteenth','field_6617cea3341a4'),(2822,186,'background_image','97'),(2823,186,'_background_image','field_66183a4e40966'),(2824,186,'trust_title','Нам <br> довіряють'),(2825,186,'_trust_title','field_66183c379f37a'),(2826,186,'background_image_2','104'),(2827,186,'_background_image_2','field_661add483a8b0'),(2828,186,'trust_title_first','Нам'),(2829,186,'_trust_title_first','field_66183c379f37a'),(2830,186,'trust_title_second','довіряють'),(2831,186,'_trust_title_second','field_661ae9631502b'),(2832,186,'trust_first_link','https://scb.ua'),(2833,186,'_trust_first_link','field_66202630e7608'),(2834,186,'trust_second_link','https://ligamaistriv.com.ua/'),(2835,186,'_trust_second_link','field_66202866e7609'),(2836,186,'trust_third_link','https://xn----ctbtc0bhbg8h9c.xn--j1amh/'),(2837,186,'_trust_third_link','field_66202905e760a'),(2838,186,'trust_fourth_link','https://fado.ua/'),(2839,186,'_trust_fourth_link','field_66202950e760b'),(2840,186,'trust_fifth_link','https://ravago.com/'),(2841,186,'_trust_fifth_link','field_66202965e760c'),(2842,186,'trust_sixth_link','https://vimax-bud.com.ua/'),(2843,186,'_trust_sixth_link','field_662029a0e760d'),(2844,186,'trust_seventh_link',''),(2845,186,'_trust_seventh_link','field_662029c4e760e'),(2846,186,'trust_eighth_link','https://polimin.ua/'),(2847,186,'_trust_eighth_link','field_66202a1ae760f'),(2848,186,'trust_ninth_link','http://onteplo.com.ua'),(2849,186,'_trust_ninth_link','field_66202a33e7610'),(2850,186,'trust_tenth_link','https://www.keramaexpert.ua'),(2851,186,'_trust_tenth_link','field_66202a5ce7611'),(2852,186,'trust_eleventh_link','https://edup.org.ua/'),(2853,186,'_trust_eleventh_link','field_66202a6de7612'),(2854,186,'trust_twelveth_link','https://specservis.com.ua'),(2855,186,'_trust_twelveth_link','field_66202a8de7613'),(2856,186,'trust_thirteenth_link','https://mira.ua/'),(2857,186,'_trust_thirteenth_link','field_66202adee7614'),(2858,186,'services_5_service_title','чат-боти'),(2859,186,'_services_5_service_title','field_6531be7dcefff'),(2860,186,'services_5_service_bg','28'),(2861,186,'_services_5_service_bg','field_6531beabcf000'),(2862,187,'hdr_tel','0630254440'),(2863,187,'_hdr_tel','field_6531b971a7cd7'),(2864,187,'ftr_fb','https://www.facebook.com/IT.SmartGT'),(2865,187,'_ftr_fb','field_6531b9d5a7cd8'),(2866,187,'ftr_inst','https://instagram.com/smart__gt?igshid=NGVhN2U2NjQ0Yg%3D%3D&utm_source=qr'),(2867,187,'_ftr_inst','field_6531ba80a7cd9'),(2868,187,'ftr_tg','https://t.me/smartgt_bot'),(2869,187,'_ftr_tg','field_6531bab1a7cda'),(2870,187,'services_0_service_title','консалтинг'),(2871,187,'_services_0_service_title','field_6531be7dcefff'),(2872,187,'services_0_service_bg','136'),(2873,187,'_services_0_service_bg','field_6531beabcf000'),(2874,187,'services_1_service_title','сайти'),(2875,187,'_services_1_service_title','field_6531be7dcefff'),(2876,187,'services_1_service_bg','129'),(2877,187,'_services_1_service_bg','field_6531beabcf000'),(2878,187,'services_2_service_title','інтернет-магазини + ERP + CRM'),(2879,187,'_services_2_service_title','field_6531be7dcefff'),(2880,187,'services_2_service_bg','127'),(2881,187,'_services_2_service_bg','field_6531beabcf000'),(2882,187,'services_3_service_title','SMM'),(2883,187,'_services_3_service_title','field_6531be7dcefff'),(2884,187,'services_3_service_bg','131'),(2885,187,'_services_3_service_bg','field_6531beabcf000'),(2886,187,'services_4_service_title','дизайн'),(2887,187,'_services_4_service_title','field_6531be7dcefff'),(2888,187,'services_4_service_bg','132'),(2889,187,'_services_4_service_bg','field_6531beabcf000'),(2890,187,'services','6'),(2891,187,'_services','field_6531be62ceffe'),(2892,187,'page_img',''),(2893,187,'_page_img','field_6531c3fef2244'),(2894,187,'masters_slogan','ВАШ КЛЮЧ ДО СУЧАСНОГО БІЗНЕСУ'),(2895,187,'_masters_slogan','field_6531c4b1bb5fc'),(2896,187,'form_slogan','Ми з вами зв’яжемося і візьмемо все у свої руки'),(2897,187,'_form_slogan','field_6531c538bb5fd'),(2898,187,'ftr_text','Всі права захищені'),(2899,187,'_ftr_text','field_6538ded69ca5a'),(2900,187,'trust_first','171'),(2901,187,'_trust_first','field_6617cb724f2b5'),(2902,187,'trust_second','180'),(2903,187,'_trust_second','field_6617cba54f2b7'),(2904,187,'trust_third','149'),(2905,187,'_trust_third','field_6617cbb84f2b9'),(2906,187,'trust_fourth','176'),(2907,187,'_trust_fourth','field_6617cbc54f2ba'),(2908,187,'trust_fifth','170'),(2909,187,'_trust_fifth','field_6617cbd94f2bb'),(2910,187,'trust_sixth','175'),(2911,187,'_trust_sixth','field_6617cbe34f2bc'),(2912,187,'trust_seventh',''),(2913,187,'_trust_seventh','field_6617cd6d3419d'),(2914,187,'trust_eighth','179'),(2915,187,'_trust_eighth','field_6617cd8d3419e'),(2916,187,'trust_ninth','173'),(2917,187,'_trust_ninth','field_6617cdfa3419f'),(2918,187,'trust_tenth','172'),(2919,187,'_trust_tenth','field_6617ce3d341a1'),(2920,187,'trust_eleventh','174'),(2921,187,'_trust_eleventh','field_6617ce5e341a2'),(2922,187,'trust_twelveth','181'),(2923,187,'_trust_twelveth','field_6617ce87341a3'),(2924,187,'trust_thirteenth','177'),(2925,187,'_trust_thirteenth','field_6617cea3341a4'),(2926,187,'background_image','97'),(2927,187,'_background_image','field_66183a4e40966'),(2928,187,'trust_title','Нам <br> довіряють'),(2929,187,'_trust_title','field_66183c379f37a'),(2930,187,'background_image_2','104'),(2931,187,'_background_image_2','field_661add483a8b0'),(2932,187,'trust_title_first','Нам'),(2933,187,'_trust_title_first','field_66183c379f37a'),(2934,187,'trust_title_second','довіряють'),(2935,187,'_trust_title_second','field_661ae9631502b'),(2936,187,'trust_first_link','https://scb.ua'),(2937,187,'_trust_first_link','field_66202630e7608'),(2938,187,'trust_second_link','https://ligamaistriv.com.ua/'),(2939,187,'_trust_second_link','field_66202866e7609'),(2940,187,'trust_third_link','https://xn----ctbtc0bhbg8h9c.xn--j1amh/'),(2941,187,'_trust_third_link','field_66202905e760a'),(2942,187,'trust_fourth_link','https://fado.ua/'),(2943,187,'_trust_fourth_link','field_66202950e760b'),(2944,187,'trust_fifth_link','https://ravago.com/'),(2945,187,'_trust_fifth_link','field_66202965e760c'),(2946,187,'trust_sixth_link','https://vimax-bud.com.ua/'),(2947,187,'_trust_sixth_link','field_662029a0e760d'),(2948,187,'trust_seventh_link',''),(2949,187,'_trust_seventh_link','field_662029c4e760e'),(2950,187,'trust_eighth_link','https://polimin.ua/'),(2951,187,'_trust_eighth_link','field_66202a1ae760f'),(2952,187,'trust_ninth_link','http://onteplo.com.ua'),(2953,187,'_trust_ninth_link','field_66202a33e7610'),(2954,187,'trust_tenth_link','https://www.keramaexpert.ua'),(2955,187,'_trust_tenth_link','field_66202a5ce7611'),(2956,187,'trust_eleventh_link','https://edup.org.ua/'),(2957,187,'_trust_eleventh_link','field_66202a6de7612'),(2958,187,'trust_twelveth_link','https://specservis.com.ua'),(2959,187,'_trust_twelveth_link','field_66202a8de7613'),(2960,187,'trust_thirteenth_link','https://mira.ua/'),(2961,187,'_trust_thirteenth_link','field_66202adee7614'),(2962,187,'services_5_service_title','чат-боти'),(2963,187,'_services_5_service_title','field_6531be7dcefff'),(2964,187,'services_5_service_bg','28'),(2965,187,'_services_5_service_bg','field_6531beabcf000'),(2966,188,'hdr_tel','0630254440'),(2967,188,'_hdr_tel','field_6531b971a7cd7'),(2968,188,'ftr_fb','https://www.facebook.com/IT.SmartGT'),(2969,188,'_ftr_fb','field_6531b9d5a7cd8'),(2970,188,'ftr_inst','https://instagram.com/smart__gt?igshid=NGVhN2U2NjQ0Yg%3D%3D&utm_source=qr'),(2971,188,'_ftr_inst','field_6531ba80a7cd9'),(2972,188,'ftr_tg','https://t.me/smartgt_bot'),(2973,188,'_ftr_tg','field_6531bab1a7cda'),(2974,188,'services_0_service_title','консалтинг'),(2975,188,'_services_0_service_title','field_6531be7dcefff'),(2976,188,'services_0_service_bg','136'),(2977,188,'_services_0_service_bg','field_6531beabcf000'),(2978,188,'services_1_service_title','сайти'),(2979,188,'_services_1_service_title','field_6531be7dcefff'),(2980,188,'services_1_service_bg','129'),(2981,188,'_services_1_service_bg','field_6531beabcf000'),(2982,188,'services_2_service_title','інтернет-магазини + ERP + CRM'),(2983,188,'_services_2_service_title','field_6531be7dcefff'),(2984,188,'services_2_service_bg','127'),(2985,188,'_services_2_service_bg','field_6531beabcf000'),(2986,188,'services_3_service_title','SMM'),(2987,188,'_services_3_service_title','field_6531be7dcefff'),(2988,188,'services_3_service_bg','131'),(2989,188,'_services_3_service_bg','field_6531beabcf000'),(2990,188,'services_4_service_title','дизайн'),(2991,188,'_services_4_service_title','field_6531be7dcefff'),(2992,188,'services_4_service_bg','132'),(2993,188,'_services_4_service_bg','field_6531beabcf000'),(2994,188,'services','6'),(2995,188,'_services','field_6531be62ceffe'),(2996,188,'page_img',''),(2997,188,'_page_img','field_6531c3fef2244'),(2998,188,'masters_slogan','ВАШ КЛЮЧ ДО СУЧАСНОГО БІЗНЕСУ'),(2999,188,'_masters_slogan','field_6531c4b1bb5fc'),(3000,188,'form_slogan','Ми з вами зв’яжемося і візьмемо все у свої руки'),(3001,188,'_form_slogan','field_6531c538bb5fd'),(3002,188,'ftr_text','Всі права захищені'),(3003,188,'_ftr_text','field_6538ded69ca5a'),(3004,188,'trust_first','171'),(3005,188,'_trust_first','field_6617cb724f2b5'),(3006,188,'trust_second','180'),(3007,188,'_trust_second','field_6617cba54f2b7'),(3008,188,'trust_third','151'),(3009,188,'_trust_third','field_6617cbb84f2b9'),(3010,188,'trust_fourth','176'),(3011,188,'_trust_fourth','field_6617cbc54f2ba'),(3012,188,'trust_fifth','170'),(3013,188,'_trust_fifth','field_6617cbd94f2bb'),(3014,188,'trust_sixth','175'),(3015,188,'_trust_sixth','field_6617cbe34f2bc'),(3016,188,'trust_seventh',''),(3017,188,'_trust_seventh','field_6617cd6d3419d'),(3018,188,'trust_eighth','179'),(3019,188,'_trust_eighth','field_6617cd8d3419e'),(3020,188,'trust_ninth','173'),(3021,188,'_trust_ninth','field_6617cdfa3419f'),(3022,188,'trust_tenth','172'),(3023,188,'_trust_tenth','field_6617ce3d341a1'),(3024,188,'trust_eleventh','174'),(3025,188,'_trust_eleventh','field_6617ce5e341a2'),(3026,188,'trust_twelveth','181'),(3027,188,'_trust_twelveth','field_6617ce87341a3'),(3028,188,'trust_thirteenth','177'),(3029,188,'_trust_thirteenth','field_6617cea3341a4'),(3030,188,'background_image','97'),(3031,188,'_background_image','field_66183a4e40966'),(3032,188,'trust_title','Нам <br> довіряють'),(3033,188,'_trust_title','field_66183c379f37a'),(3034,188,'background_image_2','104'),(3035,188,'_background_image_2','field_661add483a8b0'),(3036,188,'trust_title_first','Нам'),(3037,188,'_trust_title_first','field_66183c379f37a'),(3038,188,'trust_title_second','довіряють'),(3039,188,'_trust_title_second','field_661ae9631502b'),(3040,188,'trust_first_link','https://scb.ua'),(3041,188,'_trust_first_link','field_66202630e7608'),(3042,188,'trust_second_link','https://ligamaistriv.com.ua/'),(3043,188,'_trust_second_link','field_66202866e7609'),(3044,188,'trust_third_link','https://xn----ctbtc0bhbg8h9c.xn--j1amh/'),(3045,188,'_trust_third_link','field_66202905e760a'),(3046,188,'trust_fourth_link','https://fado.ua/'),(3047,188,'_trust_fourth_link','field_66202950e760b'),(3048,188,'trust_fifth_link','https://ravago.com/'),(3049,188,'_trust_fifth_link','field_66202965e760c'),(3050,188,'trust_sixth_link','https://vimax-bud.com.ua/'),(3051,188,'_trust_sixth_link','field_662029a0e760d'),(3052,188,'trust_seventh_link',''),(3053,188,'_trust_seventh_link','field_662029c4e760e'),(3054,188,'trust_eighth_link','https://polimin.ua/'),(3055,188,'_trust_eighth_link','field_66202a1ae760f'),(3056,188,'trust_ninth_link','http://onteplo.com.ua'),(3057,188,'_trust_ninth_link','field_66202a33e7610'),(3058,188,'trust_tenth_link','https://www.keramaexpert.ua'),(3059,188,'_trust_tenth_link','field_66202a5ce7611'),(3060,188,'trust_eleventh_link','https://edup.org.ua/'),(3061,188,'_trust_eleventh_link','field_66202a6de7612'),(3062,188,'trust_twelveth_link','https://specservis.com.ua'),(3063,188,'_trust_twelveth_link','field_66202a8de7613'),(3064,188,'trust_thirteenth_link','https://mira.ua/'),(3065,188,'_trust_thirteenth_link','field_66202adee7614'),(3066,188,'services_5_service_title','чат-боти'),(3067,188,'_services_5_service_title','field_6531be7dcefff'),(3068,188,'services_5_service_bg','28'),(3069,188,'_services_5_service_bg','field_6531beabcf000'),(3070,189,'hdr_tel','0630254440'),(3071,189,'_hdr_tel','field_6531b971a7cd7'),(3072,189,'ftr_fb','https://www.facebook.com/IT.SmartGT'),(3073,189,'_ftr_fb','field_6531b9d5a7cd8'),(3074,189,'ftr_inst','https://instagram.com/smart__gt?igshid=NGVhN2U2NjQ0Yg%3D%3D&utm_source=qr'),(3075,189,'_ftr_inst','field_6531ba80a7cd9'),(3076,189,'ftr_tg','https://t.me/smartgt_bot'),(3077,189,'_ftr_tg','field_6531bab1a7cda'),(3078,189,'services_0_service_title','консалтинг'),(3079,189,'_services_0_service_title','field_6531be7dcefff'),(3080,189,'services_0_service_bg','136'),(3081,189,'_services_0_service_bg','field_6531beabcf000'),(3082,189,'services_1_service_title','сайти'),(3083,189,'_services_1_service_title','field_6531be7dcefff'),(3084,189,'services_1_service_bg','129'),(3085,189,'_services_1_service_bg','field_6531beabcf000'),(3086,189,'services_2_service_title','інтернет-магазини + ERP + CRM'),(3087,189,'_services_2_service_title','field_6531be7dcefff'),(3088,189,'services_2_service_bg','127'),(3089,189,'_services_2_service_bg','field_6531beabcf000'),(3090,189,'services_3_service_title','SMM'),(3091,189,'_services_3_service_title','field_6531be7dcefff'),(3092,189,'services_3_service_bg','131'),(3093,189,'_services_3_service_bg','field_6531beabcf000'),(3094,189,'services_4_service_title','дизайн'),(3095,189,'_services_4_service_title','field_6531be7dcefff'),(3096,189,'services_4_service_bg','132'),(3097,189,'_services_4_service_bg','field_6531beabcf000'),(3098,189,'services','6'),(3099,189,'_services','field_6531be62ceffe'),(3100,189,'page_img',''),(3101,189,'_page_img','field_6531c3fef2244'),(3102,189,'masters_slogan','ВАШ КЛЮЧ ДО СУЧАСНОГО БІЗНЕСУ'),(3103,189,'_masters_slogan','field_6531c4b1bb5fc'),(3104,189,'form_slogan','Ми з вами зв’яжемося і візьмемо все у свої руки'),(3105,189,'_form_slogan','field_6531c538bb5fd'),(3106,189,'ftr_text','Всі права захищені'),(3107,189,'_ftr_text','field_6538ded69ca5a'),(3108,189,'trust_first','171'),(3109,189,'_trust_first','field_6617cb724f2b5'),(3110,189,'trust_second','180'),(3111,189,'_trust_second','field_6617cba54f2b7'),(3112,189,'trust_third','151'),(3113,189,'_trust_third','field_6617cbb84f2b9'),(3114,189,'trust_fourth','176'),(3115,189,'_trust_fourth','field_6617cbc54f2ba'),(3116,189,'trust_fifth','170'),(3117,189,'_trust_fifth','field_6617cbd94f2bb'),(3118,189,'trust_sixth','175'),(3119,189,'_trust_sixth','field_6617cbe34f2bc'),(3120,189,'trust_seventh',''),(3121,189,'_trust_seventh','field_6617cd6d3419d'),(3122,189,'trust_eighth','179'),(3123,189,'_trust_eighth','field_6617cd8d3419e'),(3124,189,'trust_ninth','173'),(3125,189,'_trust_ninth','field_6617cdfa3419f'),(3126,189,'trust_tenth','172'),(3127,189,'_trust_tenth','field_6617ce3d341a1'),(3128,189,'trust_eleventh','174'),(3129,189,'_trust_eleventh','field_6617ce5e341a2'),(3130,189,'trust_twelveth','181'),(3131,189,'_trust_twelveth','field_6617ce87341a3'),(3132,189,'trust_thirteenth','177'),(3133,189,'_trust_thirteenth','field_6617cea3341a4'),(3134,189,'background_image','97'),(3135,189,'_background_image','field_66183a4e40966'),(3136,189,'trust_title','Нам <br> довіряють'),(3137,189,'_trust_title','field_66183c379f37a'),(3138,189,'background_image_2','104'),(3139,189,'_background_image_2','field_661add483a8b0'),(3140,189,'trust_title_first','Нам'),(3141,189,'_trust_title_first','field_66183c379f37a'),(3142,189,'trust_title_second','довіряють'),(3143,189,'_trust_title_second','field_661ae9631502b'),(3144,189,'trust_first_link','https://scb.ua'),(3145,189,'_trust_first_link','field_66202630e7608'),(3146,189,'trust_second_link','https://ligamaistriv.com.ua/'),(3147,189,'_trust_second_link','field_66202866e7609'),(3148,189,'trust_third_link','https://ligamaistriv.com.ua/'),(3149,189,'_trust_third_link','field_66202905e760a'),(3150,189,'trust_fourth_link','https://fado.ua/'),(3151,189,'_trust_fourth_link','field_66202950e760b'),(3152,189,'trust_fifth_link','https://ravago.com/'),(3153,189,'_trust_fifth_link','field_66202965e760c'),(3154,189,'trust_sixth_link','https://vimax-bud.com.ua/'),(3155,189,'_trust_sixth_link','field_662029a0e760d'),(3156,189,'trust_seventh_link',''),(3157,189,'_trust_seventh_link','field_662029c4e760e'),(3158,189,'trust_eighth_link','https://polimin.ua/'),(3159,189,'_trust_eighth_link','field_66202a1ae760f'),(3160,189,'trust_ninth_link','http://onteplo.com.ua'),(3161,189,'_trust_ninth_link','field_66202a33e7610'),(3162,189,'trust_tenth_link','https://www.keramaexpert.ua'),(3163,189,'_trust_tenth_link','field_66202a5ce7611'),(3164,189,'trust_eleventh_link','https://edup.org.ua/'),(3165,189,'_trust_eleventh_link','field_66202a6de7612'),(3166,189,'trust_twelveth_link','https://specservis.com.ua'),(3167,189,'_trust_twelveth_link','field_66202a8de7613'),(3168,189,'trust_thirteenth_link','https://mira.ua/'),(3169,189,'_trust_thirteenth_link','field_66202adee7614'),(3170,189,'services_5_service_title','чат-боти'),(3171,189,'_services_5_service_title','field_6531be7dcefff'),(3172,189,'services_5_service_bg','28'),(3173,189,'_services_5_service_bg','field_6531beabcf000'),(3174,190,'hdr_tel','0630254440'),(3175,190,'_hdr_tel','field_6531b971a7cd7'),(3176,190,'ftr_fb','https://www.facebook.com/IT.SmartGT'),(3177,190,'_ftr_fb','field_6531b9d5a7cd8'),(3178,190,'ftr_inst','https://instagram.com/smart__gt?igshid=NGVhN2U2NjQ0Yg%3D%3D&utm_source=qr'),(3179,190,'_ftr_inst','field_6531ba80a7cd9'),(3180,190,'ftr_tg','https://t.me/smartgt_bot'),(3181,190,'_ftr_tg','field_6531bab1a7cda'),(3182,190,'services_0_service_title','консалтинг'),(3183,190,'_services_0_service_title','field_6531be7dcefff'),(3184,190,'services_0_service_bg','136'),(3185,190,'_services_0_service_bg','field_6531beabcf000'),(3186,190,'services_1_service_title','сайти'),(3187,190,'_services_1_service_title','field_6531be7dcefff'),(3188,190,'services_1_service_bg','129'),(3189,190,'_services_1_service_bg','field_6531beabcf000'),(3190,190,'services_2_service_title','інтернет-магазини + ERP + CRM'),(3191,190,'_services_2_service_title','field_6531be7dcefff'),(3192,190,'services_2_service_bg','127'),(3193,190,'_services_2_service_bg','field_6531beabcf000'),(3194,190,'services_3_service_title','SMM'),(3195,190,'_services_3_service_title','field_6531be7dcefff'),(3196,190,'services_3_service_bg','131'),(3197,190,'_services_3_service_bg','field_6531beabcf000'),(3198,190,'services_4_service_title','дизайн'),(3199,190,'_services_4_service_title','field_6531be7dcefff'),(3200,190,'services_4_service_bg','132'),(3201,190,'_services_4_service_bg','field_6531beabcf000'),(3202,190,'services','6'),(3203,190,'_services','field_6531be62ceffe'),(3204,190,'page_img',''),(3205,190,'_page_img','field_6531c3fef2244'),(3206,190,'masters_slogan','ВАШ КЛЮЧ ДО СУЧАСНОГО БІЗНЕСУ'),(3207,190,'_masters_slogan','field_6531c4b1bb5fc'),(3208,190,'form_slogan','Ми з вами зв’яжемося і візьмемо все у свої руки'),(3209,190,'_form_slogan','field_6531c538bb5fd'),(3210,190,'ftr_text','Всі права захищені'),(3211,190,'_ftr_text','field_6538ded69ca5a'),(3212,190,'trust_first','171'),(3213,190,'_trust_first','field_6617cb724f2b5'),(3214,190,'trust_second','180'),(3215,190,'_trust_second','field_6617cba54f2b7'),(3216,190,'trust_third','149'),(3217,190,'_trust_third','field_6617cbb84f2b9'),(3218,190,'trust_fourth','176'),(3219,190,'_trust_fourth','field_6617cbc54f2ba'),(3220,190,'trust_fifth','170'),(3221,190,'_trust_fifth','field_6617cbd94f2bb'),(3222,190,'trust_sixth','175'),(3223,190,'_trust_sixth','field_6617cbe34f2bc'),(3224,190,'trust_seventh',''),(3225,190,'_trust_seventh','field_6617cd6d3419d'),(3226,190,'trust_eighth','179'),(3227,190,'_trust_eighth','field_6617cd8d3419e'),(3228,190,'trust_ninth','173'),(3229,190,'_trust_ninth','field_6617cdfa3419f'),(3230,190,'trust_tenth','172'),(3231,190,'_trust_tenth','field_6617ce3d341a1'),(3232,190,'trust_eleventh','174'),(3233,190,'_trust_eleventh','field_6617ce5e341a2'),(3234,190,'trust_twelveth','181'),(3235,190,'_trust_twelveth','field_6617ce87341a3'),(3236,190,'trust_thirteenth','177'),(3237,190,'_trust_thirteenth','field_6617cea3341a4'),(3238,190,'background_image','97'),(3239,190,'_background_image','field_66183a4e40966'),(3240,190,'trust_title','Нам <br> довіряють'),(3241,190,'_trust_title','field_66183c379f37a'),(3242,190,'background_image_2','104'),(3243,190,'_background_image_2','field_661add483a8b0'),(3244,190,'trust_title_first','Нам'),(3245,190,'_trust_title_first','field_66183c379f37a'),(3246,190,'trust_title_second','довіряють'),(3247,190,'_trust_title_second','field_661ae9631502b'),(3248,190,'trust_first_link','https://scb.ua'),(3249,190,'_trust_first_link','field_66202630e7608'),(3250,190,'trust_second_link','https://ligamaistriv.com.ua/'),(3251,190,'_trust_second_link','field_66202866e7609'),(3252,190,'trust_third_link','https://ligamaistriv.com.ua/'),(3253,190,'_trust_third_link','field_66202905e760a'),(3254,190,'trust_fourth_link','https://fado.ua/'),(3255,190,'_trust_fourth_link','field_66202950e760b'),(3256,190,'trust_fifth_link','https://ravago.com/'),(3257,190,'_trust_fifth_link','field_66202965e760c'),(3258,190,'trust_sixth_link','https://vimax-bud.com.ua/'),(3259,190,'_trust_sixth_link','field_662029a0e760d'),(3260,190,'trust_seventh_link',''),(3261,190,'_trust_seventh_link','field_662029c4e760e'),(3262,190,'trust_eighth_link','https://polimin.ua/'),(3263,190,'_trust_eighth_link','field_66202a1ae760f'),(3264,190,'trust_ninth_link','http://onteplo.com.ua'),(3265,190,'_trust_ninth_link','field_66202a33e7610'),(3266,190,'trust_tenth_link','https://www.keramaexpert.ua'),(3267,190,'_trust_tenth_link','field_66202a5ce7611'),(3268,190,'trust_eleventh_link','https://edup.org.ua/'),(3269,190,'_trust_eleventh_link','field_66202a6de7612'),(3270,190,'trust_twelveth_link','https://specservis.com.ua'),(3271,190,'_trust_twelveth_link','field_66202a8de7613'),(3272,190,'trust_thirteenth_link','https://mira.ua/'),(3273,190,'_trust_thirteenth_link','field_66202adee7614'),(3274,190,'services_5_service_title','чат-боти'),(3275,190,'_services_5_service_title','field_6531be7dcefff'),(3276,190,'services_5_service_bg','28'),(3277,190,'_services_5_service_bg','field_6531beabcf000'),(3280,195,'_wp_attached_file','2025/09/лого-для-сайту-12.svg'),(3281,195,'iaff_wp_attachment_original_post_title','лого для сайту-12'),(3282,195,'_wp_attachment_image_alt','лого для сайту 12'),(3283,195,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:10707;}'),(3284,196,'_wp_attached_file','2025/09/лого-для-сайту-11.svg'),(3285,196,'iaff_wp_attachment_original_post_title','лого для сайту-11'),(3286,196,'_wp_attachment_image_alt','лого для сайту 11'),(3287,196,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:26999;}'),(3288,197,'_wp_attached_file','2025/09/лого-для-сайту-03.svg'),(3289,197,'iaff_wp_attachment_original_post_title','лого для сайту-03'),(3290,197,'_wp_attachment_image_alt','лого для сайту 03'),(3291,197,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:4641;}'),(3292,198,'_wp_attached_file','2025/09/лого-для-сайту-05.svg'),(3293,198,'iaff_wp_attachment_original_post_title','лого для сайту-05'),(3294,198,'_wp_attachment_image_alt','лого для сайту 05'),(3295,198,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:5731;}'),(3296,199,'_wp_attached_file','2025/09/лого-для-сайту-07.svg'),(3297,199,'iaff_wp_attachment_original_post_title','лого для сайту-07'),(3298,199,'_wp_attachment_image_alt','лого для сайту 07'),(3299,199,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:3099;}'),(3300,200,'_wp_attached_file','2025/09/лого-для-сайту-13.svg'),(3301,200,'iaff_wp_attachment_original_post_title','лого для сайту-13'),(3302,200,'_wp_attachment_image_alt','лого для сайту 13'),(3303,200,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:20813;}'),(3304,201,'_wp_attached_file','2025/09/лого-для-сайту-02.svg'),(3305,201,'iaff_wp_attachment_original_post_title','лого для сайту-02'),(3306,201,'_wp_attachment_image_alt','лого для сайту 02'),(3307,201,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:2560;}'),(3308,202,'_wp_attached_file','2025/09/лого-для-сайту-04.svg'),(3309,202,'iaff_wp_attachment_original_post_title','лого для сайту-04'),(3310,202,'_wp_attachment_image_alt','лого для сайту 04'),(3311,202,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:3723;}'),(3312,203,'_wp_attached_file','2025/09/лого-для-сайту-06.svg'),(3313,203,'iaff_wp_attachment_original_post_title','лого для сайту-06'),(3314,203,'_wp_attachment_image_alt','лого для сайту 06'),(3315,203,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:3976;}'),(3316,204,'_wp_attached_file','2025/09/лого-для-сайту-08.svg'),(3317,204,'iaff_wp_attachment_original_post_title','лого для сайту-08'),(3318,204,'_wp_attachment_image_alt','лого для сайту 08'),(3319,204,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:3076;}'),(3320,205,'_wp_attached_file','2025/09/лого-для-сайту-09.svg'),(3321,205,'iaff_wp_attachment_original_post_title','лого для сайту-09'),(3322,205,'_wp_attachment_image_alt','лого для сайту 09'),(3323,205,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:8081;}'),(3324,206,'_wp_attached_file','2025/09/лого-для-сайту-10.svg'),(3325,206,'iaff_wp_attachment_original_post_title','лого для сайту-10'),(3326,206,'_wp_attachment_image_alt','лого для сайту 10'),(3327,206,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:91020;}'),(3328,207,'_wp_attached_file','2025/09/лого-для-сайту-01.svg'),(3329,207,'iaff_wp_attachment_original_post_title','лого для сайту-01'),(3330,207,'_wp_attachment_image_alt','лого для сайту 01'),(3331,207,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:24362;}'),(3332,191,'hdr_tel','0630254440'),(3333,191,'_hdr_tel','field_6531b971a7cd7'),(3334,191,'ftr_fb','https://www.facebook.com/IT.SmartGT'),(3335,191,'_ftr_fb','field_6531b9d5a7cd8'),(3336,191,'ftr_inst','https://instagram.com/smart__gt?igshid=NGVhN2U2NjQ0Yg%3D%3D&utm_source=qr'),(3337,191,'_ftr_inst','field_6531ba80a7cd9'),(3338,191,'ftr_tg','https://t.me/smartgt_bot'),(3339,191,'_ftr_tg','field_6531bab1a7cda'),(3340,191,'services_0_service_title','консалтинг'),(3341,191,'_services_0_service_title','field_6531be7dcefff'),(3342,191,'services_0_service_bg','136'),(3343,191,'_services_0_service_bg','field_6531beabcf000'),(3344,191,'services_1_service_title','сайти'),(3345,191,'_services_1_service_title','field_6531be7dcefff'),(3346,191,'services_1_service_bg','129'),(3347,191,'_services_1_service_bg','field_6531beabcf000'),(3348,191,'services_2_service_title','інтернет-магазини + ERP + CRM'),(3349,191,'_services_2_service_title','field_6531be7dcefff'),(3350,191,'services_2_service_bg','127'),(3351,191,'_services_2_service_bg','field_6531beabcf000'),(3352,191,'services_3_service_title','SMM'),(3353,191,'_services_3_service_title','field_6531be7dcefff'),(3354,191,'services_3_service_bg','131'),(3355,191,'_services_3_service_bg','field_6531beabcf000'),(3356,191,'services_4_service_title','дизайн'),(3357,191,'_services_4_service_title','field_6531be7dcefff'),(3358,191,'services_4_service_bg','132'),(3359,191,'_services_4_service_bg','field_6531beabcf000'),(3360,191,'services','6'),(3361,191,'_services','field_6531be62ceffe'),(3362,191,'page_img',''),(3363,191,'_page_img','field_6531c3fef2244'),(3364,191,'masters_slogan','ВАШ КЛЮЧ ДО СУЧАСНОГО БІЗНЕСУ'),(3365,191,'_masters_slogan','field_6531c4b1bb5fc'),(3366,191,'form_slogan','Ми з вами зв’яжемося і візьмемо все у свої руки'),(3367,191,'_form_slogan','field_6531c538bb5fd'),(3368,191,'ftr_text','Всі права захищені'),(3369,191,'_ftr_text','field_6538ded69ca5a'),(3370,191,'trust_first','195'),(3371,191,'_trust_first','field_6617cb724f2b5'),(3372,191,'trust_second','207'),(3373,191,'_trust_second','field_6617cba54f2b7'),(3374,191,'trust_third','197'),(3375,191,'_trust_third','field_6617cbb84f2b9'),(3376,191,'trust_fourth','198'),(3377,191,'_trust_fourth','field_6617cbc54f2ba'),(3378,191,'trust_fifth','196'),(3379,191,'_trust_fifth','field_6617cbd94f2bb'),(3380,191,'trust_sixth','203'),(3381,191,'_trust_sixth','field_6617cbe34f2bc'),(3382,191,'trust_seventh',''),(3383,191,'_trust_seventh','field_6617cd6d3419d'),(3384,191,'trust_eighth','201'),(3385,191,'_trust_eighth','field_6617cd8d3419e'),(3386,191,'trust_ninth','204'),(3387,191,'_trust_ninth','field_6617cdfa3419f'),(3388,191,'trust_tenth','205'),(3389,191,'_trust_tenth','field_6617ce3d341a1'),(3390,191,'trust_eleventh','199'),(3391,191,'_trust_eleventh','field_6617ce5e341a2'),(3392,191,'trust_twelveth','206'),(3393,191,'_trust_twelveth','field_6617ce87341a3'),(3394,191,'trust_thirteenth','202'),(3395,191,'_trust_thirteenth','field_6617cea3341a4'),(3396,191,'background_image','97'),(3397,191,'_background_image','field_66183a4e40966'),(3398,191,'trust_title','Нам <br> довіряють'),(3399,191,'_trust_title','field_66183c379f37a'),(3400,191,'background_image_2','104'),(3401,191,'_background_image_2','field_661add483a8b0'),(3402,191,'trust_title_first','Нам'),(3403,191,'_trust_title_first','field_66183c379f37a'),(3404,191,'trust_title_second','довіряють'),(3405,191,'_trust_title_second','field_661ae9631502b'),(3406,191,'trust_first_link','https://scb.ua'),(3407,191,'_trust_first_link','field_66202630e7608'),(3408,191,'trust_second_link','https://ligamaistriv.com.ua/'),(3409,191,'_trust_second_link','field_66202866e7609'),(3410,191,'trust_third_link','https://ligamaistriv.com.ua/'),(3411,191,'_trust_third_link','field_66202905e760a'),(3412,191,'trust_fourth_link','https://fado.ua/'),(3413,191,'_trust_fourth_link','field_66202950e760b'),(3414,191,'trust_fifth_link','https://ravago.com/'),(3415,191,'_trust_fifth_link','field_66202965e760c'),(3416,191,'trust_sixth_link','https://vimax-bud.com.ua/'),(3417,191,'_trust_sixth_link','field_662029a0e760d'),(3418,191,'trust_seventh_link',''),(3419,191,'_trust_seventh_link','field_662029c4e760e'),(3420,191,'trust_eighth_link','https://polimin.ua/'),(3421,191,'_trust_eighth_link','field_66202a1ae760f'),(3422,191,'trust_ninth_link','http://onteplo.com.ua'),(3423,191,'_trust_ninth_link','field_66202a33e7610'),(3424,191,'trust_tenth_link','https://www.keramaexpert.ua'),(3425,191,'_trust_tenth_link','field_66202a5ce7611'),(3426,191,'trust_eleventh_link','https://edup.org.ua/'),(3427,191,'_trust_eleventh_link','field_66202a6de7612'),(3428,191,'trust_twelveth_link','https://specservis.com.ua'),(3429,191,'_trust_twelveth_link','field_66202a8de7613'),(3430,191,'trust_thirteenth_link','https://mira.ua/'),(3431,191,'_trust_thirteenth_link','field_66202adee7614'),(3432,191,'services_5_service_title','чат-боти'),(3433,191,'_services_5_service_title','field_6531be7dcefff'),(3434,191,'services_5_service_bg','28'),(3435,191,'_services_5_service_bg','field_6531beabcf000'),(3440,208,'hdr_tel','0630254440'),(3544,212,'hdr_tel','0630254440'),(3441,208,'_hdr_tel','field_6531b971a7cd7'),(3442,208,'ftr_fb','https://www.facebook.com/IT.SmartGT'),(3443,208,'_ftr_fb','field_6531b9d5a7cd8'),(3444,208,'ftr_inst','https://instagram.com/smart__gt?igshid=NGVhN2U2NjQ0Yg%3D%3D&utm_source=qr'),(3445,208,'_ftr_inst','field_6531ba80a7cd9'),(3446,208,'ftr_tg','https://t.me/smartgt_bot'),(3447,208,'_ftr_tg','field_6531bab1a7cda'),(3448,208,'services_0_service_title','чат-боти'),(3449,208,'_services_0_service_title','field_6531be7dcefff'),(3450,208,'services_0_service_bg','28'),(3451,208,'_services_0_service_bg','field_6531beabcf000'),(3452,208,'services_1_service_title','консалтинг'),(3453,208,'_services_1_service_title','field_6531be7dcefff'),(3454,208,'services_1_service_bg','136'),(3455,208,'_services_1_service_bg','field_6531beabcf000'),(3456,208,'services_2_service_title','сайти'),(3457,208,'_services_2_service_title','field_6531be7dcefff'),(3458,208,'services_2_service_bg','129'),(3459,208,'_services_2_service_bg','field_6531beabcf000'),(3460,208,'services_3_service_title','інтернет-магазини + ERP + CRM'),(3461,208,'_services_3_service_title','field_6531be7dcefff'),(3462,208,'services_3_service_bg','127'),(3463,208,'_services_3_service_bg','field_6531beabcf000'),(3464,208,'services_4_service_title','SMM'),(3465,208,'_services_4_service_title','field_6531be7dcefff'),(3466,208,'services_4_service_bg','131'),(3467,208,'_services_4_service_bg','field_6531beabcf000'),(3468,208,'services','6'),(3469,208,'_services','field_6531be62ceffe'),(3470,208,'page_img',''),(3471,208,'_page_img','field_6531c3fef2244'),(3472,208,'masters_slogan','ВАШ КЛЮЧ ДО СУЧАСНОГО БІЗНЕСУ'),(3473,208,'_masters_slogan','field_6531c4b1bb5fc'),(3474,208,'form_slogan','Ми з вами зв’яжемося і візьмемо все у свої руки'),(3475,208,'_form_slogan','field_6531c538bb5fd'),(3476,208,'ftr_text','Всі права захищені'),(3477,208,'_ftr_text','field_6538ded69ca5a'),(3478,208,'trust_first','195'),(3479,208,'_trust_first','field_6617cb724f2b5'),(3480,208,'trust_second','207'),(3481,208,'_trust_second','field_6617cba54f2b7'),(3482,208,'trust_third','197'),(3483,208,'_trust_third','field_6617cbb84f2b9'),(3484,208,'trust_fourth','198'),(3485,208,'_trust_fourth','field_6617cbc54f2ba'),(3486,208,'trust_fifth','196'),(3487,208,'_trust_fifth','field_6617cbd94f2bb'),(3488,208,'trust_sixth','203'),(3489,208,'_trust_sixth','field_6617cbe34f2bc'),(3490,208,'trust_seventh',''),(3491,208,'_trust_seventh','field_6617cd6d3419d'),(3492,208,'trust_eighth','201'),(3493,208,'_trust_eighth','field_6617cd8d3419e'),(3494,208,'trust_ninth','204'),(3495,208,'_trust_ninth','field_6617cdfa3419f'),(3496,208,'trust_tenth','205'),(3497,208,'_trust_tenth','field_6617ce3d341a1'),(3498,208,'trust_eleventh','199'),(3499,208,'_trust_eleventh','field_6617ce5e341a2'),(3500,208,'trust_twelveth','206'),(3501,208,'_trust_twelveth','field_6617ce87341a3'),(3502,208,'trust_thirteenth','202'),(3503,208,'_trust_thirteenth','field_6617cea3341a4'),(3504,208,'background_image','97'),(3505,208,'_background_image','field_66183a4e40966'),(3506,208,'trust_title','Нам <br> довіряють'),(3507,208,'_trust_title','field_66183c379f37a'),(3508,208,'background_image_2','104'),(3509,208,'_background_image_2','field_661add483a8b0'),(3510,208,'trust_title_first','Нам'),(3511,208,'_trust_title_first','field_66183c379f37a'),(3512,208,'trust_title_second','довіряють'),(3513,208,'_trust_title_second','field_661ae9631502b'),(3514,208,'trust_first_link','https://scb.ua'),(3515,208,'_trust_first_link','field_66202630e7608'),(3516,208,'trust_second_link','https://ligamaistriv.com.ua/'),(3517,208,'_trust_second_link','field_66202866e7609'),(3518,208,'trust_third_link','https://ligamaistriv.com.ua/'),(3519,208,'_trust_third_link','field_66202905e760a'),(3520,208,'trust_fourth_link','https://fado.ua/'),(3521,208,'_trust_fourth_link','field_66202950e760b'),(3522,208,'trust_fifth_link','https://ravago.com/'),(3523,208,'_trust_fifth_link','field_66202965e760c'),(3524,208,'trust_sixth_link','https://vimax-bud.com.ua/'),(3525,208,'_trust_sixth_link','field_662029a0e760d'),(3526,208,'trust_seventh_link',''),(3527,208,'_trust_seventh_link','field_662029c4e760e'),(3528,208,'trust_eighth_link','https://polimin.ua/'),(3529,208,'_trust_eighth_link','field_66202a1ae760f'),(3530,208,'trust_ninth_link','http://onteplo.com.ua'),(3531,208,'_trust_ninth_link','field_66202a33e7610'),(3532,208,'trust_tenth_link','https://www.keramaexpert.ua'),(3533,208,'_trust_tenth_link','field_66202a5ce7611'),(3534,208,'trust_eleventh_link','https://edup.org.ua/'),(3535,208,'_trust_eleventh_link','field_66202a6de7612'),(3536,208,'trust_twelveth_link','https://specservis.com.ua'),(3537,208,'_trust_twelveth_link','field_66202a8de7613'),(3538,208,'trust_thirteenth_link','https://mira.ua/'),(3539,208,'_trust_thirteenth_link','field_66202adee7614'),(3540,208,'services_5_service_title','дизайн'),(3541,208,'_services_5_service_title','field_6531be7dcefff'),(3542,208,'services_5_service_bg','132'),(3543,208,'_services_5_service_bg','field_6531beabcf000'),(3545,212,'_hdr_tel','field_6531b971a7cd7'),(3546,212,'ftr_fb','https://www.facebook.com/IT.SmartGT'),(3547,212,'_ftr_fb','field_6531b9d5a7cd8'),(3548,212,'ftr_inst','https://instagram.com/smart__gt?igshid=NGVhN2U2NjQ0Yg%3D%3D&utm_source=qr'),(3549,212,'_ftr_inst','field_6531ba80a7cd9'),(3550,212,'ftr_tg','https://t.me/smartgt_bot'),(3551,212,'_ftr_tg','field_6531bab1a7cda'),(3552,212,'services_0_service_title','консалтинг'),(3553,212,'_services_0_service_title','field_6531be7dcefff'),(3554,212,'services_0_service_bg','136'),(3555,212,'_services_0_service_bg','field_6531beabcf000'),(3556,212,'services_1_service_title','сайти'),(3557,212,'_services_1_service_title','field_6531be7dcefff'),(3558,212,'services_1_service_bg','129'),(3559,212,'_services_1_service_bg','field_6531beabcf000'),(3560,212,'services_2_service_title','інтернет-магазини + ERP + CRM'),(3561,212,'_services_2_service_title','field_6531be7dcefff'),(3562,212,'services_2_service_bg','127'),(3563,212,'_services_2_service_bg','field_6531beabcf000'),(3564,212,'services_3_service_title','SMM'),(3565,212,'_services_3_service_title','field_6531be7dcefff'),(3566,212,'services_3_service_bg','131'),(3567,212,'_services_3_service_bg','field_6531beabcf000'),(3568,212,'services_4_service_title','дизайн'),(3569,212,'_services_4_service_title','field_6531be7dcefff'),(3570,212,'services_4_service_bg','132'),(3571,212,'_services_4_service_bg','field_6531beabcf000'),(3572,212,'services','6'),(3573,212,'_services','field_6531be62ceffe'),(3574,212,'page_img',''),(3575,212,'_page_img','field_6531c3fef2244'),(3576,212,'masters_slogan','ВАШ КЛЮЧ ДО СУЧАСНОГО БІЗНЕСУ'),(3577,212,'_masters_slogan','field_6531c4b1bb5fc'),(3578,212,'form_slogan','Ми з вами зв’яжемося і візьмемо все у свої руки'),(3579,212,'_form_slogan','field_6531c538bb5fd'),(3580,212,'ftr_text','Всі права захищені'),(3581,212,'_ftr_text','field_6538ded69ca5a'),(3582,212,'trust_first','195'),(3583,212,'_trust_first','field_6617cb724f2b5'),(3584,212,'trust_second','207'),(3585,212,'_trust_second','field_6617cba54f2b7'),(3586,212,'trust_third','197'),(3587,212,'_trust_third','field_6617cbb84f2b9'),(3588,212,'trust_fourth','198'),(3589,212,'_trust_fourth','field_6617cbc54f2ba'),(3590,212,'trust_fifth','196'),(3591,212,'_trust_fifth','field_6617cbd94f2bb'),(3592,212,'trust_sixth','203'),(3593,212,'_trust_sixth','field_6617cbe34f2bc'),(3594,212,'trust_seventh',''),(3595,212,'_trust_seventh','field_6617cd6d3419d'),(3596,212,'trust_eighth','201'),(3597,212,'_trust_eighth','field_6617cd8d3419e'),(3598,212,'trust_ninth','204'),(3599,212,'_trust_ninth','field_6617cdfa3419f'),(3600,212,'trust_tenth','205'),(3601,212,'_trust_tenth','field_6617ce3d341a1'),(3602,212,'trust_eleventh','199'),(3603,212,'_trust_eleventh','field_6617ce5e341a2'),(3604,212,'trust_twelveth','206'),(3605,212,'_trust_twelveth','field_6617ce87341a3'),(3606,212,'trust_thirteenth','202'),(3607,212,'_trust_thirteenth','field_6617cea3341a4'),(3608,212,'background_image','97'),(3609,212,'_background_image','field_66183a4e40966'),(3610,212,'trust_title','Нам <br> довіряють'),(3611,212,'_trust_title','field_66183c379f37a'),(3612,212,'background_image_2','104'),(3613,212,'_background_image_2','field_661add483a8b0'),(3614,212,'trust_title_first','Нам'),(3615,212,'_trust_title_first','field_66183c379f37a'),(3616,212,'trust_title_second','довіряють'),(3617,212,'_trust_title_second','field_661ae9631502b'),(3618,212,'trust_first_link','https://scb.ua'),(3619,212,'_trust_first_link','field_66202630e7608'),(3620,212,'trust_second_link','https://ligamaistriv.com.ua/'),(3621,212,'_trust_second_link','field_66202866e7609'),(3622,212,'trust_third_link','https://ligamaistriv.com.ua/'),(3623,212,'_trust_third_link','field_66202905e760a'),(3624,212,'trust_fourth_link','https://fado.ua/'),(3625,212,'_trust_fourth_link','field_66202950e760b'),(3626,212,'trust_fifth_link','https://ravago.com/'),(3627,212,'_trust_fifth_link','field_66202965e760c'),(3628,212,'trust_sixth_link','https://vimax-bud.com.ua/'),(3629,212,'_trust_sixth_link','field_662029a0e760d'),(3630,212,'trust_seventh_link',''),(3631,212,'_trust_seventh_link','field_662029c4e760e'),(3632,212,'trust_eighth_link','https://polimin.ua/'),(3633,212,'_trust_eighth_link','field_66202a1ae760f'),(3634,212,'trust_ninth_link','http://onteplo.com.ua'),(3635,212,'_trust_ninth_link','field_66202a33e7610'),(3636,212,'trust_tenth_link','https://www.keramaexpert.ua'),(3637,212,'_trust_tenth_link','field_66202a5ce7611'),(3638,212,'trust_eleventh_link','https://edup.org.ua/'),(3639,212,'_trust_eleventh_link','field_66202a6de7612'),(3640,212,'trust_twelveth_link','https://specservis.com.ua'),(3641,212,'_trust_twelveth_link','field_66202a8de7613'),(3642,212,'trust_thirteenth_link','https://mira.ua/'),(3643,212,'_trust_thirteenth_link','field_66202adee7614'),(3644,212,'services_5_service_title','чат-боти'),(3645,212,'_services_5_service_title','field_6531be7dcefff'),(3646,212,'services_5_service_bg','28'),(3647,212,'_services_5_service_bg','field_6531beabcf000'),(3651,215,'iaff_wp_attachment_original_post_title','youtub – копія'),(3650,215,'_wp_attached_file','2025/09/youtub-–-копія.svg'),(3652,215,'_wp_attachment_image_alt','youtub – копія'),(3653,215,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:34:\"/2025/09/youtub-–-копія.svg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:5:{s:5:\"width\";s:3:\"150\";s:6:\"height\";d:150;s:4:\"crop\";b:0;s:4:\"file\";s:25:\"youtub-–-копія.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:6:\"medium\";a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";d:300;s:4:\"crop\";b:0;s:4:\"file\";s:25:\"youtub-–-копія.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:12:\"medium_large\";a:5:{s:5:\"width\";s:3:\"768\";s:6:\"height\";d:768;s:4:\"crop\";b:0;s:4:\"file\";s:25:\"youtub-–-копія.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:5:\"large\";a:5:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";d:1024;s:4:\"crop\";b:0;s:4:\"file\";s:25:\"youtub-–-копія.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"1536x1536\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:25:\"youtub-–-копія.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"2048x2048\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:25:\"youtub-–-копія.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}}}'),(3654,216,'_wp_attached_file','2025/09/logo_dark_orange-1.svg'),(3655,216,'iaff_wp_attachment_original_post_title','logo_dark_orange'),(3656,216,'_wp_attachment_image_alt','logo dark orange'),(3657,216,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"file\";s:31:\"/2025/09/logo_dark_orange-1.svg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:5:{s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";s:4:\"crop\";s:1:\"1\";s:4:\"file\";s:22:\"logo_dark_orange-1.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:6:\"medium\";a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"300\";s:4:\"crop\";b:0;s:4:\"file\";s:22:\"logo_dark_orange-1.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:12:\"medium_large\";a:5:{s:5:\"width\";s:3:\"768\";s:6:\"height\";s:1:\"0\";s:4:\"crop\";b:0;s:4:\"file\";s:22:\"logo_dark_orange-1.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:5:\"large\";a:5:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:4:\"1024\";s:4:\"crop\";b:0;s:4:\"file\";s:22:\"logo_dark_orange-1.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"1536x1536\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:22:\"logo_dark_orange-1.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"2048x2048\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:22:\"logo_dark_orange-1.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}}}'),(3658,213,'hdr_tel','0630254440'),(3659,213,'_hdr_tel','field_6531b971a7cd7'),(3660,213,'ftr_fb','https://www.facebook.com/IT.SmartGT'),(3661,213,'_ftr_fb','field_6531b9d5a7cd8'),(3662,213,'ftr_inst','https://instagram.com/smart__gt?igshid=NGVhN2U2NjQ0Yg%3D%3D&utm_source=qr'),(3663,213,'_ftr_inst','field_6531ba80a7cd9'),(3664,213,'ftr_tg','https://t.me/smartgt_bot'),(3665,213,'_ftr_tg','field_6531bab1a7cda'),(3666,213,'services_0_service_title','консалтинг'),(3667,213,'_services_0_service_title','field_6531be7dcefff'),(3668,213,'services_0_service_bg','136'),(3669,213,'_services_0_service_bg','field_6531beabcf000'),(3670,213,'services_1_service_title','сайти'),(3671,213,'_services_1_service_title','field_6531be7dcefff'),(3672,213,'services_1_service_bg','129'),(3673,213,'_services_1_service_bg','field_6531beabcf000'),(3674,213,'services_2_service_title','інтернет-магазини + ERP + CRM'),(3675,213,'_services_2_service_title','field_6531be7dcefff'),(3676,213,'services_2_service_bg','127'),(3677,213,'_services_2_service_bg','field_6531beabcf000'),(3678,213,'services_3_service_title','SMM'),(3679,213,'_services_3_service_title','field_6531be7dcefff'),(3680,213,'services_3_service_bg','131'),(3681,213,'_services_3_service_bg','field_6531beabcf000'),(3682,213,'services_4_service_title','дизайн'),(3683,213,'_services_4_service_title','field_6531be7dcefff'),(3684,213,'services_4_service_bg','132'),(3685,213,'_services_4_service_bg','field_6531beabcf000'),(3686,213,'services','6'),(3687,213,'_services','field_6531be62ceffe'),(3688,213,'page_img',''),(3689,213,'_page_img','field_6531c3fef2244'),(3690,213,'masters_slogan','ВАШ КЛЮЧ ДО СУЧАСНОГО БІЗНЕСУ'),(3691,213,'_masters_slogan','field_6531c4b1bb5fc'),(3692,213,'form_slogan','Ми з вами зв’яжемося і візьмемо все у свої руки'),(3693,213,'_form_slogan','field_6531c538bb5fd'),(3694,213,'ftr_text','Всі права захищені'),(3695,213,'_ftr_text','field_6538ded69ca5a'),(3696,213,'trust_first','195'),(3697,213,'_trust_first','field_6617cb724f2b5'),(3698,213,'trust_second','207'),(3699,213,'_trust_second','field_6617cba54f2b7'),(3700,213,'trust_third','197'),(3701,213,'_trust_third','field_6617cbb84f2b9'),(3702,213,'trust_fourth','198'),(3703,213,'_trust_fourth','field_6617cbc54f2ba'),(3704,213,'trust_fifth','196'),(3705,213,'_trust_fifth','field_6617cbd94f2bb'),(3706,213,'trust_sixth','203'),(3707,213,'_trust_sixth','field_6617cbe34f2bc'),(3708,213,'trust_seventh','216'),(3709,213,'_trust_seventh','field_6617cd6d3419d'),(3710,213,'trust_eighth','201'),(3711,213,'_trust_eighth','field_6617cd8d3419e'),(3712,213,'trust_ninth','204'),(3713,213,'_trust_ninth','field_6617cdfa3419f'),(3714,213,'trust_tenth','205'),(3715,213,'_trust_tenth','field_6617ce3d341a1'),(3716,213,'trust_eleventh','199'),(3717,213,'_trust_eleventh','field_6617ce5e341a2'),(3718,213,'trust_twelveth','206'),(3719,213,'_trust_twelveth','field_6617ce87341a3'),(3720,213,'trust_thirteenth','202'),(3721,213,'_trust_thirteenth','field_6617cea3341a4'),(3722,213,'background_image','97'),(3723,213,'_background_image','field_66183a4e40966'),(3724,213,'trust_title','Нам <br> довіряють'),(3725,213,'_trust_title','field_66183c379f37a'),(3726,213,'background_image_2','104'),(3727,213,'_background_image_2','field_661add483a8b0'),(3728,213,'trust_title_first','Нам'),(3729,213,'_trust_title_first','field_66183c379f37a'),(3730,213,'trust_title_second','довіряють'),(3731,213,'_trust_title_second','field_661ae9631502b'),(3732,213,'trust_first_link','https://scb.ua'),(3733,213,'_trust_first_link','field_66202630e7608'),(3734,213,'trust_second_link','https://ligamaistriv.com.ua/'),(3735,213,'_trust_second_link','field_66202866e7609'),(3736,213,'trust_third_link','https://ligamaistriv.com.ua/'),(3737,213,'_trust_third_link','field_66202905e760a'),(3738,213,'trust_fourth_link','https://fado.ua/'),(3739,213,'_trust_fourth_link','field_66202950e760b'),(3740,213,'trust_fifth_link','https://ravago.com/'),(3741,213,'_trust_fifth_link','field_66202965e760c'),(3742,213,'trust_sixth_link','https://vimax-bud.com.ua/'),(3743,213,'_trust_sixth_link','field_662029a0e760d'),(3744,213,'trust_seventh_link','https://veterano.info'),(3745,213,'_trust_seventh_link','field_662029c4e760e'),(3746,213,'trust_eighth_link','https://polimin.ua/'),(3747,213,'_trust_eighth_link','field_66202a1ae760f'),(3748,213,'trust_ninth_link','http://onteplo.com.ua'),(3749,213,'_trust_ninth_link','field_66202a33e7610'),(3750,213,'trust_tenth_link','https://www.keramaexpert.ua'),(3751,213,'_trust_tenth_link','field_66202a5ce7611'),(3752,213,'trust_eleventh_link','https://edup.org.ua/'),(3753,213,'_trust_eleventh_link','field_66202a6de7612'),(3754,213,'trust_twelveth_link','https://specservis.com.ua'),(3755,213,'_trust_twelveth_link','field_66202a8de7613'),(3756,213,'trust_thirteenth_link','https://mira.ua/'),(3757,213,'_trust_thirteenth_link','field_66202adee7614'),(3758,213,'services_5_service_title','чат-боти'),(3759,213,'_services_5_service_title','field_6531be7dcefff'),(3760,213,'services_5_service_bg','28'),(3761,213,'_services_5_service_bg','field_6531beabcf000');
/*!40000 ALTER TABLE `wp6k_postmeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp6k_posts`
--
DROP TABLE IF EXISTS `wp6k_posts`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp6k_posts` (
`ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`post_author` bigint(20) unsigned NOT NULL DEFAULT 0,
`post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_content` longtext NOT NULL,
`post_title` text NOT NULL,
`post_excerpt` text NOT NULL,
`post_status` varchar(20) NOT NULL DEFAULT 'publish',
`comment_status` varchar(20) NOT NULL DEFAULT 'open',
`ping_status` varchar(20) NOT NULL DEFAULT 'open',
`post_password` varchar(255) NOT NULL DEFAULT '',
`post_name` varchar(200) NOT NULL DEFAULT '',
`to_ping` text NOT NULL,
`pinged` text NOT NULL,
`post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_content_filtered` longtext NOT NULL,
`post_parent` bigint(20) unsigned NOT NULL DEFAULT 0,
`guid` varchar(255) NOT NULL DEFAULT '',
`menu_order` int(11) NOT NULL DEFAULT 0,
`post_type` varchar(20) NOT NULL DEFAULT 'post',
`post_mime_type` varchar(100) NOT NULL DEFAULT '',
`comment_count` bigint(20) NOT NULL DEFAULT 0,
PRIMARY KEY (`ID`),
KEY `post_name` (`post_name`(191)),
KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
KEY `post_parent` (`post_parent`),
KEY `post_author` (`post_author`),
KEY `type_status_author` (`post_type`,`post_status`,`post_author`)
) ENGINE=MyISAM AUTO_INCREMENT=219 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp6k_posts`
--
LOCK TABLES `wp6k_posts` WRITE;
/*!40000 ALTER TABLE `wp6k_posts` DISABLE KEYS */;
INSERT INTO `wp6k_posts` VALUES (1,1,'2023-10-16 15:41:09','2023-10-16 15:41:09','<!-- wp:paragraph -->\n<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n<!-- /wp:paragraph -->','Hello world!','','draft','open','open','','hello-world','','','2025-09-10 11:34:34','2025-09-10 11:34:34','',0,'http://sgt.com.ua/?p=1',0,'post','',1),(85,1,'2024-04-11 12:04:10','2024-04-11 12:04:10','Frame 49','Frame 49','Frame 49','inherit','open','closed','','frame-49','','','2024-04-11 12:04:10','2024-04-11 12:04:10','',11,'http://sgt.com.ua/wp-content/uploads/2024/04/Frame-49.png',0,'attachment','image/png',0),(86,1,'2024-04-11 12:04:39','2024-04-11 12:04:39','Frame 45','Frame 45','Frame 45','inherit','open','closed','','frame-45','','','2024-04-11 12:04:39','2024-04-11 12:04:39','',11,'http://sgt.com.ua/wp-content/uploads/2024/04/Frame-45.png',0,'attachment','image/png',0),(83,1,'2024-04-11 12:01:11','2024-04-11 12:01:11','Frame 47','Frame 47','Frame 47','inherit','open','closed','','frame-47','','','2024-04-11 12:01:11','2024-04-11 12:01:11','',11,'http://sgt.com.ua/wp-content/uploads/2024/04/Frame-47.png',0,'attachment','image/png',0),(87,1,'2024-04-11 12:05:07','2024-04-11 12:05:07','Frame 56','Frame 56','Frame 56','inherit','open','closed','','frame-56','','','2024-04-11 12:05:07','2024-04-11 12:05:07','',11,'http://sgt.com.ua/wp-content/uploads/2024/04/Frame-56.png',0,'attachment','image/png',0),(88,1,'2024-04-11 12:05:30','2024-04-11 12:05:30','Frame 51','Frame 51','Frame 51','inherit','open','closed','','frame-51','','','2024-04-11 12:05:31','2024-04-11 12:05:31','',11,'http://sgt.com.ua/wp-content/uploads/2024/04/Frame-51.png',0,'attachment','image/png',0),(89,1,'2024-04-11 12:05:54','2024-04-11 12:05:54','Frame 50','Frame 50','Frame 50','inherit','open','closed','','frame-50','','','2024-04-11 12:05:54','2024-04-11 12:05:54','',11,'http://sgt.com.ua/wp-content/uploads/2024/04/Frame-50.png',0,'attachment','image/png',0),(90,1,'2024-04-11 12:06:12','2024-04-11 12:06:12','Frame 43','Frame 43','Frame 43','inherit','open','closed','','frame-43','','','2024-04-11 12:06:12','2024-04-11 12:06:12','',11,'http://sgt.com.ua/wp-content/uploads/2024/04/Frame-43.png',0,'attachment','image/png',0),(71,1,'2024-04-11 11:51:19','2024-04-11 11:51:19','a:16:{s:10:\"aria-label\";s:0:\"\";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: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:\"\";s:12:\"preview_size\";s:6:\"medium\";}','trust_ninth','trust_ninth','publish','closed','closed','','field_6617cdfa3419f','','','2024-04-11 11:51:19','2024-04-11 11:51:19','',58,'https://sgt.com.ua/?post_type=acf-field&p=71',8,'acf-field','',0),(72,1,'2024-04-11 11:51:19','2024-04-11 11:51:19','a:16:{s:10:\"aria-label\";s:0:\"\";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: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:\"\";s:12:\"preview_size\";s:6:\"medium\";}','trust_tenth','trust_tenth','publish','closed','closed','','field_6617ce3d341a1','','','2024-04-11 11:51:19','2024-04-11 11:51:19','',58,'https://sgt.com.ua/?post_type=acf-field&p=72',9,'acf-field','',0),(73,1,'2024-04-11 11:51:20','2024-04-11 11:51:20','a:16:{s:10:\"aria-label\";s:0:\"\";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: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:\"\";s:12:\"preview_size\";s:6:\"medium\";}','trust_eleventh','trust_eleventh','publish','closed','closed','','field_6617ce5e341a2','','','2024-04-11 11:51:20','2024-04-11 11:51:20','',58,'https://sgt.com.ua/?post_type=acf-field&p=73',10,'acf-field','',0),(74,1,'2024-04-11 11:51:20','2024-04-11 11:51:20','a:16:{s:10:\"aria-label\";s:0:\"\";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: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:\"\";s:12:\"preview_size\";s:6:\"medium\";}','trust_twelveth','trust_twelveth','publish','closed','closed','','field_6617ce87341a3','','','2024-04-11 11:52:28','2024-04-11 11:52:28','',58,'https://sgt.com.ua/?post_type=acf-field&p=74',11,'acf-field','',0),(75,1,'2024-04-11 11:51:20','2024-04-11 11:51:20','a:16:{s:10:\"aria-label\";s:0:\"\";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: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:\"\";s:12:\"preview_size\";s:6:\"medium\";}','trust_thirteenth','trust_thirteenth','publish','closed','closed','','field_6617cea3341a4','','','2024-04-11 11:51:20','2024-04-11 11:51:20','',58,'https://sgt.com.ua/?post_type=acf-field&p=75',12,'acf-field','',0),(76,1,'2024-04-11 11:52:59','2024-04-11 11:52:59','logo (1) 1','logo (1) 1','logo (1) 1','inherit','open','closed','','logo-1-1','','','2024-04-11 11:52:59','2024-04-11 11:52:59','',11,'http://sgt.com.ua/wp-content/uploads/2024/04/logo-1-1.png',0,'attachment','image/png',0),(77,1,'2024-04-11 11:53:33','2024-04-11 11:53:33','image 5','image 5','image 5','inherit','open','closed','','image-5','','','2024-04-11 11:53:33','2024-04-11 11:53:33','',11,'http://sgt.com.ua/wp-content/uploads/2024/04/image-5.png',0,'attachment','image/png',0),(78,1,'2024-04-11 11:53:59','2024-04-11 11:53:59','Frame 58','Frame 58','Frame 58','inherit','open','closed','','frame-58','','','2024-04-11 11:53:59','2024-04-11 11:53:59','',11,'http://sgt.com.ua/wp-content/uploads/2024/04/Frame-58.png',0,'attachment','image/png',0),(79,1,'2024-04-11 11:54:24','2024-04-11 11:54:24','photo 2024 03 11 21 33 50 Photoroom 1','photo 2024 03 11 21 33 50 Photoroom 1','photo 2024 03 11 21 33 50 Photoroom 1','inherit','open','closed','','photo_2024-03-11_21-33-50-photoroom-1','','','2024-04-11 11:54:24','2024-04-11 11:54:24','',11,'http://sgt.com.ua/wp-content/uploads/2024/04/photo_2024-03-11_21-33-50-Photoroom-1.png',0,'attachment','image/png',0),(80,1,'2024-04-11 11:55:32','2024-04-11 11:55:32','Frame 57','Frame 57','Frame 57','inherit','open','closed','','frame-57','','','2024-04-11 11:55:32','2024-04-11 11:55:32','',11,'http://sgt.com.ua/wp-content/uploads/2024/04/Frame-57.png',0,'attachment','image/png',0),(81,1,'2024-04-11 11:58:06','2024-04-11 11:58:06','snapedit 1710258807564 depositphotos bgremover 1','snapedit 1710258807564 depositphotos bgremover 1','snapedit 1710258807564 depositphotos bgremover 1','inherit','open','closed','','snapedit_1710258807564-depositphotos-bgremover-1','','','2024-04-11 11:58:06','2024-04-11 11:58:06','',11,'http://sgt.com.ua/wp-content/uploads/2024/04/snapedit_1710258807564-depositphotos-bgremover-1.png',0,'attachment','image/png',0),(4,0,'2023-10-16 16:56:33','2023-10-16 16:56:33','<!-- wp:page-list /-->','Navigation','','publish','closed','closed','','navigation','','','2023-10-16 16:56:33','2023-10-16 16:56:33','',0,'https://sgt.com.ua/?p=4',0,'wp_navigation','',0),(52,1,'2023-12-30 12:37:13','2023-12-30 12:37:13','','Головна','','inherit','closed','closed','','11-revision-v1','','','2023-12-30 12:37:13','2023-12-30 12:37:13','',11,'https://sgt.com.ua/?p=52',0,'revision','',0),(54,1,'2024-01-14 12:28:59','2024-01-14 12:28:59','','Головна','','inherit','closed','closed','','11-revision-v1','','','2024-01-14 12:28:59','2024-01-14 12:28:59','',11,'https://sgt.com.ua/?p=54',0,'revision','',0),(55,1,'2024-01-14 13:47:59','2024-01-14 13:47:59','','Головна','','inherit','closed','closed','','11-revision-v1','','','2024-01-14 13:47:59','2024-01-14 13:47:59','',11,'https://sgt.com.ua/?p=55',0,'revision','',0),(58,1,'2024-04-11 11:39:43','2024-04-11 11:39:43','a:8:{s:8:\"location\";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\";s:10:\"front_page\";}}}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;}','Нам довіряють','%d0%bd%d0%b0%d0%bc-%d0%b4%d0%be%d0%b2%d1%96%d1%80%d1%8f%d1%8e%d1%82%d1%8c','publish','closed','closed','','group_6617cb727d4bd','','','2024-04-17 20:03:05','2024-04-17 20:03:05','',0,'https://sgt.com.ua/?post_type=acf-field-group&p=58',0,'acf-field-group','',0),(59,1,'2024-04-11 11:39:41','2024-04-11 11:39:41','a:16:{s:10:\"aria-label\";s:0:\"\";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: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:\"\";s:12:\"preview_size\";s:6:\"medium\";}','trust_first','trust_first','publish','closed','closed','','field_6617cb724f2b5','','','2024-04-11 11:44:28','2024-04-11 11:44:28','',58,'https://sgt.com.ua/?post_type=acf-field&p=59',0,'acf-field','',0),(60,1,'2024-04-11 11:39:41','2024-04-11 11:39:41','a:16:{s:10:\"aria-label\";s:0:\"\";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: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:\"\";s:12:\"preview_size\";s:6:\"medium\";}','trust_second','trust_second','publish','closed','closed','','field_6617cba54f2b7','','','2024-04-11 11:51:16','2024-04-11 11:51:16','',58,'https://sgt.com.ua/?post_type=acf-field&p=60',1,'acf-field','',0),(11,1,'2023-10-19 15:07:24','2023-10-19 15:07:24','','Цифоровізація бізнесу та консалтинг','','publish','closed','closed','','%d0%b3%d0%be%d0%bb%d0%be%d0%b2%d0%bd%d0%b0','','','2025-09-23 11:27:10','2025-09-23 11:27:10','',0,'https://sgt.com.ua/?page_id=11',0,'page','',0),(12,1,'2023-10-19 15:07:24','2023-10-19 15:07:24','','Головна','','inherit','closed','closed','','11-revision-v1','','','2023-10-19 15:07:24','2023-10-19 15:07:24','',11,'https://sgt.com.ua/?p=12',0,'revision','',0),(13,1,'2023-10-19 15:07:43','2023-10-19 15:07:43','','Контакти','','publish','closed','closed','','about','','','2025-02-27 15:30:14','2025-02-27 15:30:14','',0,'https://sgt.com.ua/?page_id=13',0,'page','',0),(14,1,'2023-10-19 15:07:43','2023-10-19 15:07:43','','Контакти','','inherit','closed','closed','','13-revision-v1','','','2023-10-19 15:07:43','2023-10-19 15:07:43','',13,'https://sgt.com.ua/?p=14',0,'revision','',0),(61,1,'2024-04-11 11:39:42','2024-04-11 11:39:42','a:16:{s:10:\"aria-label\";s:0:\"\";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: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:\"\";s:12:\"preview_size\";s:6:\"medium\";}','trust_third','trust_third','publish','closed','closed','','field_6617cbb84f2b9','','','2024-04-11 11:51:17','2024-04-11 11:51:17','',58,'https://sgt.com.ua/?post_type=acf-field&p=61',2,'acf-field','',0),(62,1,'2024-04-11 11:39:42','2024-04-11 11:39:42','a:16:{s:10:\"aria-label\";s:0:\"\";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: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:\"\";s:12:\"preview_size\";s:6:\"medium\";}','trust_fourth','trust_fourth','publish','closed','closed','','field_6617cbc54f2ba','','','2024-04-11 11:51:17','2024-04-11 11:51:17','',58,'https://sgt.com.ua/?post_type=acf-field&p=62',3,'acf-field','',0),(63,1,'2024-04-11 11:39:43','2024-04-11 11:39:43','a:16:{s:10:\"aria-label\";s:0:\"\";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: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:\"\";s:12:\"preview_size\";s:6:\"medium\";}','trust_fifth','trust_fifth','publish','closed','closed','','field_6617cbd94f2bb','','','2024-04-11 11:51:17','2024-04-11 11:51:17','',58,'https://sgt.com.ua/?post_type=acf-field&p=63',4,'acf-field','',0),(64,1,'2024-04-11 11:39:43','2024-04-11 11:39:43','a:16:{s:10:\"aria-label\";s:0:\"\";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: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:\"\";s:12:\"preview_size\";s:6:\"medium\";}','trust_sixth','trust_sixth','publish','closed','closed','','field_6617cbe34f2bc','','','2024-04-11 11:51:18','2024-04-11 11:51:18','',58,'https://sgt.com.ua/?post_type=acf-field&p=64',5,'acf-field','',0),(84,1,'2024-04-11 12:02:05','2024-04-11 12:02:05','logo svitpro h 1','logo svitpro h 1','logo svitpro h 1','inherit','open','closed','','logo-svitpro-h-1','','','2024-04-11 12:02:05','2024-04-11 12:02:05','',11,'http://sgt.com.ua/wp-content/uploads/2024/04/logo-svitpro-h-1.png',0,'attachment','image/png',0),(66,1,'2024-04-11 11:40:57','2024-04-11 11:40:57','Frame 42','Frame 42','Frame 42','inherit','open','closed','','frame-42-2','','','2024-04-11 11:40:57','2024-04-11 11:40:57','',11,'http://sgt.com.ua/wp-content/uploads/2024/04/Frame-42-1.png',0,'attachment','image/png',0),(67,1,'2024-04-11 11:41:38','2024-04-11 11:41:38','snapedit 1710259007552 1','snapedit 1710259007552 1','snapedit 1710259007552 1','inherit','open','closed','','snapedit_1710259007552-1','','','2024-04-11 11:41:38','2024-04-11 11:41:38','',11,'http://sgt.com.ua/wp-content/uploads/2024/04/snapedit_1710259007552-1.png',0,'attachment','image/png',0),(68,1,'2024-04-11 11:41:43','2024-04-11 11:41:43','','Головна','','inherit','closed','closed','','11-revision-v1','','','2024-04-11 11:41:43','2024-04-11 11:41:43','',11,'https://sgt.com.ua/?p=68',0,'revision','',0),(69,1,'2024-04-11 11:51:18','2024-04-11 11:51:18','a:16:{s:10:\"aria-label\";s:0:\"\";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: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:\"\";s:12:\"preview_size\";s:6:\"medium\";}','trust_seventh','trust_seventh','publish','closed','closed','','field_6617cd6d3419d','','','2024-04-11 11:51:18','2024-04-11 11:51:18','',58,'https://sgt.com.ua/?post_type=acf-field&p=69',6,'acf-field','',0),(70,1,'2024-04-11 11:51:19','2024-04-11 11:51:19','a:16:{s:10:\"aria-label\";s:0:\"\";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: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:\"\";s:12:\"preview_size\";s:6:\"medium\";}','trust_eighth','trust_eighth','publish','closed','closed','','field_6617cd8d3419e','','','2024-04-11 11:51:19','2024-04-11 11:51:19','',58,'https://sgt.com.ua/?post_type=acf-field&p=70',7,'acf-field','',0),(16,1,'2023-10-19 23:25:19','2023-10-19 23:25:19','a:8:{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:\"11\";}}}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;}','Контакти','%d0%ba%d0%be%d0%bd%d1%82%d0%b0%d0%ba%d1%82%d0%b8','publish','closed','closed','','group_6531b970b4dba','','','2023-10-25 09:25:34','2023-10-25 09:25:34','',0,'https://sgt.com.ua/?post_type=acf-field-group&p=16',0,'acf-field-group','',0),(17,1,'2023-10-19 23:25:19','2023-10-19 23:25:19','a:11:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:10:\"0630254440\";s:9:\"maxlength\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Номер телефону','hdr_tel','publish','closed','closed','','field_6531b971a7cd7','','','2023-10-20 00:15:06','2023-10-20 00:15:06','',16,'https://sgt.com.ua/?post_type=acf-field&p=17',0,'acf-field','',0),(18,1,'2023-10-19 23:25:19','2023-10-19 23:25:19','a:11:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Посилання facebook','ftr_fb','publish','closed','closed','','field_6531b9d5a7cd8','','','2023-10-19 23:25:19','2023-10-19 23:25:19','',16,'https://sgt.com.ua/?post_type=acf-field&p=18',1,'acf-field','',0),(19,1,'2023-10-19 23:25:19','2023-10-19 23:25:19','a:11:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Посилання instagram','ftr_inst','publish','closed','closed','','field_6531ba80a7cd9','','','2023-10-19 23:25:19','2023-10-19 23:25:19','',16,'https://sgt.com.ua/?post_type=acf-field&p=19',2,'acf-field','',0),(20,1,'2023-10-19 23:25:19','2023-10-19 23:25:19','a:11:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Посилання telegram','ftr_tg','publish','closed','closed','','field_6531bab1a7cda','','','2023-10-19 23:25:19','2023-10-19 23:25:19','',16,'https://sgt.com.ua/?post_type=acf-field&p=20',3,'acf-field','',0),(21,1,'2023-10-19 23:44:53','2023-10-19 23:44:53','a:8:{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:\"11\";}}}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;}','Список послуг','%d1%81%d0%bf%d0%b8%d1%81%d0%be%d0%ba-%d0%bf%d0%be%d1%81%d0%bb%d1%83%d0%b3','publish','closed','closed','','group_6531be622cc00','','','2023-10-19 23:58:56','2023-10-19 23:58:56','',0,'https://sgt.com.ua/?post_type=acf-field-group&p=21',0,'acf-field-group','',0),(22,1,'2023-10-19 23:44:53','2023-10-19 23:44:53','a:13:{s:10:\"aria-label\";s:0:\"\";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:6:\"layout\";s:5:\"table\";s:10:\"pagination\";i:0;s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";s:9:\"collapsed\";s:0:\"\";s:12:\"button_label\";s:0:\"\";s:13:\"rows_per_page\";i:20;}','Список послуг','services','publish','closed','closed','','field_6531be62ceffe','','','2023-10-19 23:44:53','2023-10-19 23:44:53','',21,'https://sgt.com.ua/?post_type=acf-field&p=22',0,'acf-field','',0),(23,1,'2023-10-19 23:44:53','2023-10-19 23:44:53','a:11:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Назва послуги','service_title','publish','closed','closed','','field_6531be7dcefff','','','2023-10-19 23:44:53','2023-10-19 23:44:53','',22,'https://sgt.com.ua/?post_type=acf-field&p=23',0,'acf-field','',0),(24,1,'2023-10-19 23:44:53','2023-10-19 23:44:53','a:16:{s:10:\"aria-label\";s:0:\"\";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: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:\"\";s:12:\"preview_size\";s:9:\"thumbnail\";}','Фонове зображення послуги для слайдера','service_bg','publish','closed','closed','','field_6531beabcf000','','','2023-10-19 23:58:55','2023-10-19 23:58:55','',22,'https://sgt.com.ua/?post_type=acf-field&p=24',1,'acf-field','',0),(25,1,'2023-10-19 23:46:01','2023-10-19 23:46:01','cover','cover','cover','inherit','open','closed','','cover','','','2023-10-19 23:46:01','2023-10-19 23:46:01','',11,'http://sgt.com.ua/wp-content/uploads/2023/10/cover.jpg',0,'attachment','image/jpeg',0),(26,1,'2023-10-19 23:47:00','2023-10-19 23:47:00','cover 1','cover 1','cover 1','inherit','open','closed','','cover-2','','','2023-10-19 23:47:00','2023-10-19 23:47:00','',11,'http://sgt.com.ua/wp-content/uploads/2023/10/cover-1.jpg',0,'attachment','image/jpeg',0),(27,1,'2023-10-19 23:47:34','2023-10-19 23:47:34','slide1','slide1','slide1','inherit','open','closed','','slide1','','','2023-10-19 23:47:34','2023-10-19 23:47:34','',11,'http://sgt.com.ua/wp-content/uploads/2023/10/slide1.png',0,'attachment','image/png',0),(28,1,'2023-10-19 23:47:56','2023-10-19 23:47:56','chats bg','chats bg','chats bg','inherit','open','closed','','chats-bg','','','2023-10-19 23:47:56','2023-10-19 23:47:56','',11,'http://sgt.com.ua/wp-content/uploads/2023/10/chats-bg.jpg',0,'attachment','image/jpeg',0),(29,1,'2023-10-19 23:48:13','2023-10-19 23:48:13','about2','about2','about2','inherit','open','closed','','about2','','','2023-10-19 23:48:13','2023-10-19 23:48:13','',11,'http://sgt.com.ua/wp-content/uploads/2023/10/about2.png',0,'attachment','image/png',0),(30,1,'2023-10-19 23:48:38','2023-10-19 23:48:38','','Головна','','inherit','closed','closed','','11-revision-v1','','','2023-10-19 23:48:38','2023-10-19 23:48:38','',11,'https://sgt.com.ua/?p=30',0,'revision','',0),(31,1,'2023-10-19 23:54:44','2023-10-19 23:54:44','','Головна','','inherit','closed','closed','','11-revision-v1','','','2023-10-19 23:54:44','2023-10-19 23:54:44','',11,'https://sgt.com.ua/?p=31',0,'revision','',0),(32,1,'2023-10-20 00:05:07','2023-10-20 00:05:07','a:8:{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:\"11\";}}}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;}','Зображення біля форми','%d0%b7%d0%be%d0%b1%d1%80%d0%b0%d0%b6%d0%b5%d0%bd%d0%bd%d1%8f-%d0%b1%d1%96%d0%bb%d1%8f-%d1%84%d0%be%d1%80%d0%bc%d0%b8','publish','closed','closed','','group_6531c3fe298b3','','','2023-10-20 00:41:47','2023-10-20 00:41:47','',0,'https://sgt.com.ua/?post_type=acf-field-group&p=32',0,'acf-field-group','',0),(33,1,'2023-10-20 00:05:07','2023-10-20 00:05:07','a:16:{s:10:\"aria-label\";s:0:\"\";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: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:\"\";s:12:\"preview_size\";s:6:\"medium\";}','Зображення біля форми','page_img','publish','closed','closed','','field_6531c3fef2244','','','2023-10-20 00:05:07','2023-10-20 00:05:07','',32,'https://sgt.com.ua/?post_type=acf-field&p=33',0,'acf-field','',0),(34,1,'2023-10-20 00:05:49','2023-10-20 00:05:49','order some img','order some img','order some img','inherit','open','closed','','order-some-img','','','2023-10-20 00:05:49','2023-10-20 00:05:49','',11,'http://sgt.com.ua/wp-content/uploads/2023/10/order-some-img.png',0,'attachment','image/png',0),(35,1,'2023-10-20 00:05:57','2023-10-20 00:05:57','','Головна','','inherit','closed','closed','','11-revision-v1','','','2023-10-20 00:05:57','2023-10-20 00:05:57','',11,'https://sgt.com.ua/?p=35',0,'revision','',0),(36,1,'2023-10-20 00:11:02','2023-10-20 00:11:02','a:8:{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:\"11\";}}}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;}','Текст на головній','%d1%82%d0%b5%d0%ba%d1%81%d1%82-%d0%bd%d0%b0-%d0%b3%d0%be%d0%bb%d0%be%d0%b2%d0%bd%d1%96%d0%b9','publish','closed','closed','','group_6531c4b11de2f','','','2023-10-20 00:11:31','2023-10-20 00:11:31','',0,'https://sgt.com.ua/?post_type=acf-field-group&p=36',0,'acf-field-group','',0),(37,1,'2023-10-20 00:11:02','2023-10-20 00:11:02','a:11:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:54:\"ВАШ КЛЮЧ ДО СУЧАСНОГО БІЗНЕСУ\";s:9:\"maxlength\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Слоган під майстрами цифрової інформації','masters_slogan','publish','closed','closed','','field_6531c4b1bb5fc','','','2023-10-20 00:11:02','2023-10-20 00:11:02','',36,'https://sgt.com.ua/?post_type=acf-field&p=37',0,'acf-field','',0),(38,1,'2023-10-20 00:11:02','2023-10-20 00:11:02','a:11:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:86:\"Ми з вами зв’яжемося і візьмемо все у свої руки\";s:9:\"maxlength\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Фраза під Замовте послугу! (над формою)','form_slogan','publish','closed','closed','','field_6531c538bb5fd','','','2023-10-20 00:11:02','2023-10-20 00:11:02','',36,'https://sgt.com.ua/?post_type=acf-field&p=38',1,'acf-field','',0),(39,1,'2023-10-20 00:20:33','2023-10-20 00:20:33','','Головна','','inherit','closed','closed','','11-revision-v1','','','2023-10-20 00:20:33','2023-10-20 00:20:33','',11,'https://sgt.com.ua/?p=39',0,'revision','',0),(40,1,'2023-10-20 00:36:56','2023-10-20 00:36:56','a:8:{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:\"13\";}}}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;}','Про нас','%d0%bf%d1%80%d0%be-%d0%bd%d0%b0%d1%81','publish','closed','closed','','group_6531cb1194a25','','','2023-10-23 19:11:20','2023-10-23 19:11:20','',0,'https://sgt.com.ua/?post_type=acf-field-group&p=40',0,'acf-field-group','',0),(41,1,'2023-10-20 00:36:56','2023-10-20 00:36:56','a:11:{s:10:\"aria-label\";s:0:\"\";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:193:\"Ми - ваші партнери у цифровому успіху, об\'єднуючи технології та креативність для зростання вашого бізнесу\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"new_lines\";s:0:\"\";}','Текст про нас','about_text','publish','closed','closed','','field_6531cb11816a7','','','2023-10-20 00:36:56','2023-10-20 00:36:56','',40,'https://sgt.com.ua/?post_type=acf-field&p=41',0,'acf-field','',0),(42,1,'2023-10-20 00:36:56','2023-10-20 00:36:56','a:16:{s:10:\"aria-label\";s:0:\"\";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: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:\"\";s:12:\"preview_size\";s:6:\"medium\";}','Перше зображення про нас','about_img1','publish','closed','closed','','field_6531cb5d816a8','','','2023-10-20 00:36:56','2023-10-20 00:36:56','',40,'https://sgt.com.ua/?post_type=acf-field&p=42',1,'acf-field','',0),(47,1,'2023-10-25 09:10:33','2023-10-25 09:10:33','','Головна','','inherit','closed','closed','','11-revision-v1','','','2023-10-25 09:10:33','2023-10-25 09:10:33','',11,'https://sgt.com.ua/?p=47',0,'revision','',0),(48,1,'2023-10-25 09:25:12','2023-10-25 09:25:12','a:11:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:34:\"Всі права захищені\";s:9:\"maxlength\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Текст права захищені','ftr_text','publish','closed','closed','','field_6538ded69ca5a','','','2023-10-25 09:25:12','2023-10-25 09:25:12','',16,'https://sgt.com.ua/?post_type=acf-field&p=48',4,'acf-field','',0),(44,1,'2023-10-20 00:40:52','2023-10-20 00:40:52','about1','about1','about1','inherit','open','closed','','about1','','','2023-10-20 00:40:52','2023-10-20 00:40:52','',13,'http://sgt.com.ua/wp-content/uploads/2023/10/about1.png',0,'attachment','image/png',0),(45,1,'2023-10-20 00:41:06','2023-10-20 00:41:06','about2 1','about2 1','about2 1','inherit','open','closed','','about2-2','','','2023-10-20 00:41:06','2023-10-20 00:41:06','',13,'http://sgt.com.ua/wp-content/uploads/2023/10/about2-1.png',0,'attachment','image/png',0),(46,1,'2023-10-20 00:41:13','2023-10-20 00:41:13','','Контакти','','inherit','closed','closed','','13-revision-v1','','','2023-10-20 00:41:13','2023-10-20 00:41:13','',13,'https://sgt.com.ua/?p=46',0,'revision','',0),(108,1,'2024-04-17 20:02:59','2024-04-17 20:02:59','a:8:{s:10:\"aria-label\";s:0:\"\";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:\"\";}','trust_first_link','trust_first_link','publish','closed','closed','','field_66202630e7608','','','2024-04-17 20:02:59','2024-04-17 20:02:59','',58,'https://sgt.com.ua/?post_type=acf-field&p=108',17,'acf-field','',0),(91,1,'2024-04-11 12:06:34','2024-04-11 12:06:34','Frame 48','Frame 48','Frame 48','inherit','open','closed','','frame-48','','','2024-04-11 12:06:34','2024-04-11 12:06:34','',11,'http://sgt.com.ua/wp-content/uploads/2024/04/Frame-48.png',0,'attachment','image/png',0),(92,1,'2024-04-11 12:06:56','2024-04-11 12:06:56','Frame 44','Frame 44','Frame 44','inherit','open','closed','','frame-44','','','2024-04-11 12:06:56','2024-04-11 12:06:56','',11,'http://sgt.com.ua/wp-content/uploads/2024/04/Frame-44.png',0,'attachment','image/png',0),(93,1,'2024-04-11 12:07:29','2024-04-11 12:07:29','Frame 54','Frame 54','Frame 54','inherit','open','closed','','frame-54','','','2024-04-11 12:07:29','2024-04-11 12:07:29','',11,'http://sgt.com.ua/wp-content/uploads/2024/04/Frame-54.png',0,'attachment','image/png',0),(94,1,'2024-04-11 12:08:07','2024-04-11 12:08:07','Frame 52','Frame 52','Frame 52','inherit','open','closed','','frame-52','','','2024-04-11 12:08:07','2024-04-11 12:08:07','',11,'http://sgt.com.ua/wp-content/uploads/2024/04/Frame-52.png',0,'attachment','image/png',0),(95,1,'2024-04-11 12:08:13','2024-04-11 12:08:13','','Головна','','inherit','closed','closed','','11-revision-v1','','','2024-04-11 12:08:13','2024-04-11 12:08:13','',11,'https://sgt.com.ua/?p=95',0,'revision','',0),(96,1,'2024-04-11 19:30:50','2024-04-11 19:30:50','a:16:{s:10:\"aria-label\";s:0:\"\";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: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:\"\";s:12:\"preview_size\";s:6:\"medium\";}','background_image','background_image','publish','closed','closed','','field_66183a4e40966','','','2024-04-11 19:30:50','2024-04-11 19:30:50','',58,'https://sgt.com.ua/?post_type=acf-field&p=96',13,'acf-field','',0),(97,1,'2024-04-11 19:36:19','2024-04-11 19:36:19','Фото 2.1 (1)','Фото 2.1 (1)','Фото 2.1 (1)','inherit','open','closed','','%d1%84%d0%be%d1%82%d0%be-2-1-1','','','2024-04-11 19:36:19','2024-04-11 19:36:19','',11,'http://sgt.com.ua/wp-content/uploads/2024/04/Фото-2.1-1.png',0,'attachment','image/png',0),(98,1,'2024-04-11 19:36:30','2024-04-11 19:36:30','','Головна','','inherit','closed','closed','','11-revision-v1','','','2024-04-11 19:36:30','2024-04-11 19:36:30','',11,'https://sgt.com.ua/?p=98',0,'revision','',0),(99,1,'2024-04-11 19:38:49','2024-04-11 19:38:49','a:11:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','trust_title_first','trust_title_first','publish','closed','closed','','field_66183c379f37a','','','2024-04-13 20:22:27','2024-04-13 20:22:27','',58,'https://sgt.com.ua/?post_type=acf-field&p=99',14,'acf-field','',0),(100,1,'2024-04-11 19:39:34','2024-04-11 19:39:34','','Головна','','inherit','closed','closed','','11-revision-v1','','','2024-04-11 19:39:34','2024-04-11 19:39:34','',11,'https://sgt.com.ua/?p=100',0,'revision','',0),(101,1,'2024-04-12 11:22:32','2024-04-12 11:22:32','','Головна','','inherit','closed','closed','','11-revision-v1','','','2024-04-12 11:22:32','2024-04-12 11:22:32','',11,'https://sgt.com.ua/?p=101',0,'revision','',0),(103,1,'2024-04-13 19:30:50','2024-04-13 19:30:50','a:16:{s:10:\"aria-label\";s:0:\"\";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: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:\"\";s:12:\"preview_size\";s:6:\"medium\";}','background_image_2','background_image_2','publish','closed','closed','','field_661add483a8b0','','','2024-04-13 19:30:50','2024-04-13 19:30:50','',58,'https://sgt.com.ua/?post_type=acf-field&p=103',15,'acf-field','',0),(104,1,'2024-04-13 19:32:58','2024-04-13 19:32:58','2 1 photoroom 1 4x','2 1 photoroom 1 4x','2 1 photoroom 1 4x','inherit','open','closed','','_2_1_photoroom_1_4x','','','2024-04-13 19:32:58','2024-04-13 19:32:58','',11,'http://sgt.com.ua/wp-content/uploads/2024/04/2_1_photoroom_1_4x.webp',0,'attachment','image/webp',0),(105,1,'2024-04-13 19:33:07','2024-04-13 19:33:07','','Головна','','inherit','closed','closed','','11-revision-v1','','','2024-04-13 19:33:07','2024-04-13 19:33:07','',11,'https://sgt.com.ua/?p=105',0,'revision','',0),(106,1,'2024-04-13 20:22:28','2024-04-13 20:22:28','a:11:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','trust_title_second','trust_title_second','publish','closed','closed','','field_661ae9631502b','','','2024-04-13 20:22:28','2024-04-13 20:22:28','',58,'https://sgt.com.ua/?post_type=acf-field&p=106',16,'acf-field','',0),(107,1,'2024-04-13 20:23:22','2024-04-13 20:23:22','','Головна','','inherit','closed','closed','','11-revision-v1','','','2024-04-13 20:23:22','2024-04-13 20:23:22','',11,'https://sgt.com.ua/?p=107',0,'revision','',0),(109,1,'2024-04-17 20:02:59','2024-04-17 20:02:59','a:8:{s:10:\"aria-label\";s:0:\"\";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:\"\";}','trust_second_link','trust_second_link','publish','closed','closed','','field_66202866e7609','','','2024-04-17 20:02:59','2024-04-17 20:02:59','',58,'https://sgt.com.ua/?post_type=acf-field&p=109',18,'acf-field','',0),(110,1,'2024-04-17 20:03:00','2024-04-17 20:03:00','a:8:{s:10:\"aria-label\";s:0:\"\";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:\"\";}','trust_third_link','trust_third_link','publish','closed','closed','','field_66202905e760a','','','2024-04-17 20:03:00','2024-04-17 20:03:00','',58,'https://sgt.com.ua/?post_type=acf-field&p=110',19,'acf-field','',0),(111,1,'2024-04-17 20:03:00','2024-04-17 20:03:00','a:8:{s:10:\"aria-label\";s:0:\"\";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:\"\";}','trust_fourth_link','trust_fourth_link','publish','closed','closed','','field_66202950e760b','','','2024-04-17 20:03:00','2024-04-17 20:03:00','',58,'https://sgt.com.ua/?post_type=acf-field&p=111',20,'acf-field','',0),(112,1,'2024-04-17 20:03:01','2024-04-17 20:03:01','a:8:{s:10:\"aria-label\";s:0:\"\";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:\"\";}','trust_fifth_link','trust_fifth_link','publish','closed','closed','','field_66202965e760c','','','2024-04-17 20:03:01','2024-04-17 20:03:01','',58,'https://sgt.com.ua/?post_type=acf-field&p=112',21,'acf-field','',0),(113,1,'2024-04-17 20:03:01','2024-04-17 20:03:01','a:8:{s:10:\"aria-label\";s:0:\"\";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:\"\";}','trust_sixth_link','trust_sixth_link','publish','closed','closed','','field_662029a0e760d','','','2024-04-17 20:03:01','2024-04-17 20:03:01','',58,'https://sgt.com.ua/?post_type=acf-field&p=113',22,'acf-field','',0),(114,1,'2024-04-17 20:03:01','2024-04-17 20:03:01','a:8:{s:10:\"aria-label\";s:0:\"\";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:\"\";}','trust_seventh_link','trust_seventh_link','publish','closed','closed','','field_662029c4e760e','','','2024-04-17 20:03:01','2024-04-17 20:03:01','',58,'https://sgt.com.ua/?post_type=acf-field&p=114',23,'acf-field','',0),(115,1,'2024-04-17 20:03:02','2024-04-17 20:03:02','a:8:{s:10:\"aria-label\";s:0:\"\";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:\"\";}','trust_eighth_link','trust_eighth_link','publish','closed','closed','','field_66202a1ae760f','','','2024-04-17 20:03:02','2024-04-17 20:03:02','',58,'https://sgt.com.ua/?post_type=acf-field&p=115',24,'acf-field','',0),(116,1,'2024-04-17 20:03:02','2024-04-17 20:03:02','a:8:{s:10:\"aria-label\";s:0:\"\";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:\"\";}','trust_ninth_link','trust_ninth_link','publish','closed','closed','','field_66202a33e7610','','','2024-04-17 20:03:02','2024-04-17 20:03:02','',58,'https://sgt.com.ua/?post_type=acf-field&p=116',25,'acf-field','',0),(117,1,'2024-04-17 20:03:03','2024-04-17 20:03:03','a:8:{s:10:\"aria-label\";s:0:\"\";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:\"\";}','trust_tenth_link','trust_tenth_link','publish','closed','closed','','field_66202a5ce7611','','','2024-04-17 20:03:03','2024-04-17 20:03:03','',58,'https://sgt.com.ua/?post_type=acf-field&p=117',26,'acf-field','',0),(118,1,'2024-04-17 20:03:04','2024-04-17 20:03:04','a:8:{s:10:\"aria-label\";s:0:\"\";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:\"\";}','trust_eleventh_link','trust_eleventh_link','publish','closed','closed','','field_66202a6de7612','','','2024-04-17 20:03:04','2024-04-17 20:03:04','',58,'https://sgt.com.ua/?post_type=acf-field&p=118',27,'acf-field','',0),(119,1,'2024-04-17 20:03:04','2024-04-17 20:03:04','a:8:{s:10:\"aria-label\";s:0:\"\";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:\"\";}','trust_twelveth_link','trust_twelveth_link','publish','closed','closed','','field_66202a8de7613','','','2024-04-17 20:03:04','2024-04-17 20:03:04','',58,'https://sgt.com.ua/?post_type=acf-field&p=119',28,'acf-field','',0),(120,1,'2024-04-17 20:03:04','2024-04-17 20:03:04','a:8:{s:10:\"aria-label\";s:0:\"\";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:\"\";}','trust_thirteenth_link','trust_thirteenth_link','publish','closed','closed','','field_66202adee7614','','','2024-04-17 20:03:04','2024-04-17 20:03:04','',58,'https://sgt.com.ua/?post_type=acf-field&p=120',29,'acf-field','',0),(121,1,'2024-04-17 20:03:53','2024-04-17 20:03:53','','Головна','','inherit','closed','closed','','11-revision-v1','','','2024-04-17 20:03:53','2024-04-17 20:03:53','',11,'https://sgt.com.ua/?p=121',0,'revision','',0),(122,1,'2024-04-17 20:29:52','2024-04-17 20:29:52','','Головна','','inherit','closed','closed','','11-revision-v1','','','2024-04-17 20:29:52','2024-04-17 20:29:52','',11,'https://sgt.com.ua/?p=122',0,'revision','',0),(141,1,'2025-07-29 16:30:26','2025-07-29 16:30:26','','Головна','','inherit','closed','closed','','11-revision-v1','','','2025-07-29 16:30:26','2025-07-29 16:30:26','',11,'https://sgt.com.ua/?p=141',0,'revision','',0),(159,1,'2025-09-18 09:57:53','2025-09-18 09:57:53','лого для сайту 09','лого для сайту 09','лого для сайту 09','inherit','open','closed','','%d0%bb%d0%be%d0%b3%d0%be-%d0%b4%d0%bb%d1%8f-%d1%81%d0%b0%d0%b9%d1%82%d1%83-09','','','2025-09-18 09:57:53','2025-09-18 09:57:53','',11,'http://sgt.com.ua/wp-content/uploads/2025/09/лого-для-сайту-09.png',0,'attachment','image/png',0),(126,1,'2025-02-27 12:45:51','2025-02-27 12:45:51','Designer (1)','Designer (1)','Designer (1)','inherit','open','closed','','designer-1','','','2025-02-27 12:45:51','2025-02-27 12:45:51','',11,'http://sgt.com.ua/wp-content/uploads/2025/02/Designer-1.jpeg',0,'attachment','image/jpeg',0),(127,1,'2025-02-27 12:48:30','2025-02-27 12:48:30','Designer (2)','Designer (2)','Designer (2)','inherit','open','closed','','designer-2','','','2025-02-27 12:48:30','2025-02-27 12:48:30','',11,'http://sgt.com.ua/wp-content/uploads/2025/02/Designer-2.jpeg',0,'attachment','image/jpeg',0),(128,1,'2025-02-27 12:48:36','2025-02-27 12:48:36','','Головна','','inherit','closed','closed','','11-revision-v1','','','2025-02-27 12:48:36','2025-02-27 12:48:36','',11,'https://sgt.com.ua/?p=128',0,'revision','',0),(129,1,'2025-02-27 12:50:07','2025-02-27 12:50:07','Designer (3)','Designer (3)','Designer (3)','inherit','open','closed','','designer-3','','','2025-02-27 12:50:07','2025-02-27 12:50:07','',11,'http://sgt.com.ua/wp-content/uploads/2025/02/Designer-3.jpeg',0,'attachment','image/jpeg',0),(130,1,'2025-02-27 12:50:11','2025-02-27 12:50:11','','Головна','','inherit','closed','closed','','11-revision-v1','','','2025-02-27 12:50:11','2025-02-27 12:50:11','',11,'https://sgt.com.ua/?p=130',0,'revision','',0),(131,1,'2025-02-27 12:51:50','2025-02-27 12:51:50','Designer (4)','Designer (4)','Designer (4)','inherit','open','closed','','designer-4','','','2025-02-27 12:51:50','2025-02-27 12:51:50','',11,'http://sgt.com.ua/wp-content/uploads/2025/02/Designer-4.jpeg',0,'attachment','image/jpeg',0),(132,1,'2025-02-27 15:27:05','2025-02-27 15:27:05','Designer (5)','Designer (5)','Designer (5)','inherit','open','closed','','designer-5','','','2025-02-27 15:27:05','2025-02-27 15:27:05','',11,'http://sgt.com.ua/wp-content/uploads/2025/02/Designer-5.jpeg',0,'attachment','image/jpeg',0),(133,1,'2025-02-27 15:27:10','2025-02-27 15:27:10','','Головна','','inherit','closed','closed','','11-revision-v1','','','2025-02-27 15:27:10','2025-02-27 15:27:10','',11,'https://sgt.com.ua/?p=133',0,'revision','',0),(134,1,'2025-02-27 15:30:10','2025-02-27 15:30:10','Designer (6)','Designer (6)','Designer (6)','inherit','open','closed','','designer-6','','','2025-02-27 15:30:10','2025-02-27 15:30:10','',13,'http://sgt.com.ua/wp-content/uploads/2025/02/Designer-6.jpeg',0,'attachment','image/jpeg',0),(135,1,'2025-02-27 15:30:14','2025-02-27 15:30:14','','Контакти','','inherit','closed','closed','','13-revision-v1','','','2025-02-27 15:30:14','2025-02-27 15:30:14','',13,'https://sgt.com.ua/?p=135',0,'revision','',0),(136,1,'2025-03-05 14:24:22','2025-03-05 14:24:22','Designer (9)','Designer (9)','Designer (9)','inherit','open','closed','','designer-9','','','2025-03-05 14:24:22','2025-03-05 14:24:22','',11,'http://sgt.com.ua/wp-content/uploads/2025/03/Designer-9.jpeg',0,'attachment','image/jpeg',0),(137,1,'2025-03-05 14:24:29','2025-03-05 14:24:29','','Головна','','inherit','closed','closed','','11-revision-v1','','','2025-03-05 14:24:29','2025-03-05 14:24:29','',11,'https://sgt.com.ua/?p=137',0,'revision','',0),(143,1,'2025-09-10 11:26:46','2025-09-10 11:26:46','','Цифоровізація бізнесу та консалтинг','','inherit','closed','closed','','11-revision-v1','','','2025-09-10 11:26:46','2025-09-10 11:26:46','',11,'https://sgt.com.ua/?p=143',0,'revision','',0),(144,1,'2025-09-10 11:34:32','2025-09-10 11:34:32','<!-- wp:paragraph -->\n<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n<!-- /wp:paragraph -->','Hello world!','','inherit','closed','closed','','1-revision-v1','','','2025-09-10 11:34:32','2025-09-10 11:34:32','',1,'https://sgt.com.ua/?p=144',0,'revision','',0),(145,1,'2025-09-17 10:07:32','2025-09-17 10:07:32','site lm','site lm','site lm','inherit','open','closed','','site_lm','','','2025-09-17 10:07:32','2025-09-17 10:07:32','',11,'http://sgt.com.ua/wp-content/uploads/2025/09/site_lm.svg',0,'attachment','image/svg+xml',0),(146,1,'2025-09-17 10:07:42','2025-09-17 10:07:42','длго для сайту Polimin','длго для сайту Polimin','длго для сайту Polimin','inherit','open','closed','','%d0%b4%d0%bb%d0%b3%d0%be-%d0%b4%d0%bb%d1%8f-%d1%81%d0%b0%d0%b9%d1%82%d1%83_polimin','','','2025-09-17 10:07:42','2025-09-17 10:07:42','',11,'http://sgt.com.ua/wp-content/uploads/2025/09/длго-для-сайту_Polimin.svg',0,'attachment','image/svg+xml',0),(147,1,'2025-09-17 10:07:43','2025-09-17 10:07:43','длго для сайту Mira','длго для сайту Mira','длго для сайту Mira','inherit','open','closed','','%d0%b4%d0%bb%d0%b3%d0%be-%d0%b4%d0%bb%d1%8f-%d1%81%d0%b0%d0%b9%d1%82%d1%83_mira','','','2025-09-17 10:07:43','2025-09-17 10:07:43','',11,'http://sgt.com.ua/wp-content/uploads/2025/09/длго-для-сайту_Mira.svg',0,'attachment','image/svg+xml',0),(148,1,'2025-09-17 10:07:43','2025-09-17 10:07:43','длго для сайту Fado','длго для сайту Fado','длго для сайту Fado','inherit','open','closed','','%d0%b4%d0%bb%d0%b3%d0%be-%d0%b4%d0%bb%d1%8f-%d1%81%d0%b0%d0%b9%d1%82%d1%83_fado','','','2025-09-17 10:07:43','2025-09-17 10:07:43','',11,'http://sgt.com.ua/wp-content/uploads/2025/09/длго-для-сайту_Fado.svg',0,'attachment','image/svg+xml',0),(149,1,'2025-09-17 10:07:44','2025-09-17 10:07:44','длго для сайту Твій юрист','длго для сайту Твій юрист','длго для сайту Твій юрист','inherit','open','closed','','%d0%b4%d0%bb%d0%b3%d0%be-%d0%b4%d0%bb%d1%8f-%d1%81%d0%b0%d0%b9%d1%82%d1%83_%d1%82%d0%b2%d1%96%d0%b9-%d1%8e%d1%80%d0%b8%d1%81%d1%82','','','2025-09-17 10:07:44','2025-09-17 10:07:44','',11,'http://sgt.com.ua/wp-content/uploads/2025/09/длго-для-сайту_Твій-юрист.svg',0,'attachment','image/svg+xml',0),(150,1,'2025-09-17 10:09:24','2025-09-17 10:09:24','','Цифоровізація бізнесу та консалтинг','','inherit','closed','closed','','11-revision-v1','','','2025-09-17 10:09:24','2025-09-17 10:09:24','',11,'https://sgt.com.ua/?p=150',0,'revision','',0),(151,1,'2025-09-17 10:30:04','2025-09-17 10:30:04','длго для сайту Твій юрист','длго для сайту Твій юрист','длго для сайту Твій юрист','inherit','open','closed','','%d0%b4%d0%bb%d0%b3%d0%be-%d0%b4%d0%bb%d1%8f-%d1%81%d0%b0%d0%b9%d1%82%d1%83_%d1%82%d0%b2%d1%96%d0%b9-%d1%8e%d1%80%d0%b8%d1%81%d1%82-2','','','2025-09-17 10:30:04','2025-09-17 10:30:04','',11,'http://sgt.com.ua/wp-content/uploads/2025/09/длго-для-сайту_Твій-юрист.png',0,'attachment','image/png',0),(152,1,'2025-09-17 10:30:05','2025-09-17 10:30:05','длго для сайту Fado','длго для сайту Fado','длго для сайту Fado','inherit','open','closed','','%d0%b4%d0%bb%d0%b3%d0%be-%d0%b4%d0%bb%d1%8f-%d1%81%d0%b0%d0%b9%d1%82%d1%83_fado-2','','','2025-09-17 10:30:05','2025-09-17 10:30:05','',11,'http://sgt.com.ua/wp-content/uploads/2025/09/длго-для-сайту_Fado.png',0,'attachment','image/png',0),(153,1,'2025-09-17 10:30:05','2025-09-17 10:30:05','длго для сайту Mira','длго для сайту Mira','длго для сайту Mira','inherit','open','closed','','%d0%b4%d0%bb%d0%b3%d0%be-%d0%b4%d0%bb%d1%8f-%d1%81%d0%b0%d0%b9%d1%82%d1%83_mira-2','','','2025-09-17 10:30:05','2025-09-17 10:30:05','',11,'http://sgt.com.ua/wp-content/uploads/2025/09/длго-для-сайту_Mira.png',0,'attachment','image/png',0),(154,1,'2025-09-17 10:30:06','2025-09-17 10:30:06','длго для сайту Polimin','длго для сайту Polimin','длго для сайту Polimin','inherit','open','closed','','%d0%b4%d0%bb%d0%b3%d0%be-%d0%b4%d0%bb%d1%8f-%d1%81%d0%b0%d0%b9%d1%82%d1%83_polimin-2','','','2025-09-17 10:30:06','2025-09-17 10:30:06','',11,'http://sgt.com.ua/wp-content/uploads/2025/09/длго-для-сайту_Polimin.png',0,'attachment','image/png',0),(155,1,'2025-09-17 10:30:06','2025-09-17 10:30:06','site lm','site lm','site lm','inherit','open','closed','','site_lm-2','','','2025-09-17 10:30:06','2025-09-17 10:30:06','',11,'http://sgt.com.ua/wp-content/uploads/2025/09/site_lm.png',0,'attachment','image/png',0),(156,1,'2025-09-17 10:30:36','2025-09-17 10:30:36','','Цифоровізація бізнесу та консалтинг','','inherit','closed','closed','','11-revision-v1','','','2025-09-17 10:30:36','2025-09-17 10:30:36','',11,'https://sgt.com.ua/?p=156',0,'revision','',0),(157,1,'2025-09-17 10:37:52','2025-09-17 10:37:52','','Цифоровізація бізнесу та консалтинг','','inherit','closed','closed','','11-revision-v1','','','2025-09-17 10:37:52','2025-09-17 10:37:52','',11,'https://sgt.com.ua/?p=157',0,'revision','',0),(158,1,'2025-09-17 10:43:41','2025-09-17 10:43:41','','Цифоровізація бізнесу та консалтинг','','inherit','closed','closed','','11-revision-v1','','','2025-09-17 10:43:41','2025-09-17 10:43:41','',11,'https://sgt.com.ua/?p=158',0,'revision','',0),(160,1,'2025-09-18 09:57:53','2025-09-18 09:57:53','лого для сайту 08','лого для сайту 08','лого для сайту 08','inherit','open','closed','','%d0%bb%d0%be%d0%b3%d0%be-%d0%b4%d0%bb%d1%8f-%d1%81%d0%b0%d0%b9%d1%82%d1%83-08','','','2025-09-18 09:57:53','2025-09-18 09:57:53','',11,'http://sgt.com.ua/wp-content/uploads/2025/09/лого-для-сайту-08.png',0,'attachment','image/png',0),(161,1,'2025-09-18 09:57:54','2025-09-18 09:57:54','лого для сайту 07','лого для сайту 07','лого для сайту 07','inherit','open','closed','','%d0%bb%d0%be%d0%b3%d0%be-%d0%b4%d0%bb%d1%8f-%d1%81%d0%b0%d0%b9%d1%82%d1%83-07','','','2025-09-18 09:57:54','2025-09-18 09:57:54','',11,'http://sgt.com.ua/wp-content/uploads/2025/09/лого-для-сайту-07.png',0,'attachment','image/png',0),(162,1,'2025-09-18 09:57:55','2025-09-18 09:57:55','лого для сайту 06','лого для сайту 06','лого для сайту 06','inherit','open','closed','','%d0%bb%d0%be%d0%b3%d0%be-%d0%b4%d0%bb%d1%8f-%d1%81%d0%b0%d0%b9%d1%82%d1%83-06','','','2025-09-18 09:57:55','2025-09-18 09:57:55','',11,'http://sgt.com.ua/wp-content/uploads/2025/09/лого-для-сайту-06.png',0,'attachment','image/png',0),(163,1,'2025-09-18 09:57:55','2025-09-18 09:57:55','лого для сайту 05','лого для сайту 05','лого для сайту 05','inherit','open','closed','','%d0%bb%d0%be%d0%b3%d0%be-%d0%b4%d0%bb%d1%8f-%d1%81%d0%b0%d0%b9%d1%82%d1%83-05','','','2025-09-18 09:57:55','2025-09-18 09:57:55','',11,'http://sgt.com.ua/wp-content/uploads/2025/09/лого-для-сайту-05.png',0,'attachment','image/png',0),(164,1,'2025-09-18 09:57:56','2025-09-18 09:57:56','лого для сайту 04','лого для сайту 04','лого для сайту 04','inherit','open','closed','','%d0%bb%d0%be%d0%b3%d0%be-%d0%b4%d0%bb%d1%8f-%d1%81%d0%b0%d0%b9%d1%82%d1%83-04','','','2025-09-18 09:57:56','2025-09-18 09:57:56','',11,'http://sgt.com.ua/wp-content/uploads/2025/09/лого-для-сайту-04.png',0,'attachment','image/png',0),(165,1,'2025-09-18 09:57:56','2025-09-18 09:57:56','лого для сайту 03','лого для сайту 03','лого для сайту 03','inherit','open','closed','','%d0%bb%d0%be%d0%b3%d0%be-%d0%b4%d0%bb%d1%8f-%d1%81%d0%b0%d0%b9%d1%82%d1%83-03','','','2025-09-18 09:57:56','2025-09-18 09:57:56','',11,'http://sgt.com.ua/wp-content/uploads/2025/09/лого-для-сайту-03.png',0,'attachment','image/png',0),(166,1,'2025-09-18 09:57:57','2025-09-18 09:57:57','лого для сайту 02','лого для сайту 02','лого для сайту 02','inherit','open','closed','','%d0%bb%d0%be%d0%b3%d0%be-%d0%b4%d0%bb%d1%8f-%d1%81%d0%b0%d0%b9%d1%82%d1%83-02','','','2025-09-18 09:57:57','2025-09-18 09:57:57','',11,'http://sgt.com.ua/wp-content/uploads/2025/09/лого-для-сайту-02.png',0,'attachment','image/png',0),(167,1,'2025-09-18 09:57:57','2025-09-18 09:57:57','лого для сайту 01','лого для сайту 01','лого для сайту 01','inherit','open','closed','','%d0%bb%d0%be%d0%b3%d0%be-%d0%b4%d0%bb%d1%8f-%d1%81%d0%b0%d0%b9%d1%82%d1%83-01','','','2025-09-18 09:57:57','2025-09-18 09:57:57','',11,'http://sgt.com.ua/wp-content/uploads/2025/09/лого-для-сайту-01.png',0,'attachment','image/png',0),(168,1,'2025-09-18 09:57:58','2025-09-18 09:57:58','лого для сайту 10','лого для сайту 10','лого для сайту 10','inherit','open','closed','','%d0%bb%d0%be%d0%b3%d0%be-%d0%b4%d0%bb%d1%8f-%d1%81%d0%b0%d0%b9%d1%82%d1%83-10','','','2025-09-18 09:57:58','2025-09-18 09:57:58','',11,'http://sgt.com.ua/wp-content/uploads/2025/09/лого-для-сайту-10.png',0,'attachment','image/png',0),(169,1,'2025-09-18 09:58:24','2025-09-18 09:58:24','','Цифоровізація бізнесу та консалтинг','','inherit','closed','closed','','11-revision-v1','','','2025-09-18 09:58:24','2025-09-18 09:58:24','',11,'https://sgt.com.ua/?p=169',0,'revision','',0),(170,1,'2025-09-18 10:05:40','2025-09-18 10:05:40','лого для сайту 11','лого для сайту 11','лого для сайту 11','inherit','open','closed','','%d0%bb%d0%be%d0%b3%d0%be-%d0%b4%d0%bb%d1%8f-%d1%81%d0%b0%d0%b9%d1%82%d1%83-11','','','2025-09-18 10:05:40','2025-09-18 10:05:40','',11,'http://sgt.com.ua/wp-content/uploads/2025/09/лого-для-сайту-11.png',0,'attachment','image/png',0),(171,1,'2025-09-18 10:05:40','2025-09-18 10:05:40','лого для сайту 12','лого для сайту 12','лого для сайту 12','inherit','open','closed','','%d0%bb%d0%be%d0%b3%d0%be-%d0%b4%d0%bb%d1%8f-%d1%81%d0%b0%d0%b9%d1%82%d1%83-12','','','2025-09-18 10:05:40','2025-09-18 10:05:40','',11,'http://sgt.com.ua/wp-content/uploads/2025/09/лого-для-сайту-12.png',0,'attachment','image/png',0),(172,1,'2025-09-18 10:05:41','2025-09-18 10:05:41','лого для сайту 09','лого для сайту 09','лого для сайту 09','inherit','open','closed','','%d0%bb%d0%be%d0%b3%d0%be-%d0%b4%d0%bb%d1%8f-%d1%81%d0%b0%d0%b9%d1%82%d1%83-09-2','','','2025-09-18 10:05:41','2025-09-18 10:05:41','',11,'http://sgt.com.ua/wp-content/uploads/2025/09/лого-для-сайту-09-1.png',0,'attachment','image/png',0),(173,1,'2025-09-18 10:05:41','2025-09-18 10:05:41','лого для сайту 08','лого для сайту 08','лого для сайту 08','inherit','open','closed','','%d0%bb%d0%be%d0%b3%d0%be-%d0%b4%d0%bb%d1%8f-%d1%81%d0%b0%d0%b9%d1%82%d1%83-08-2','','','2025-09-18 10:05:41','2025-09-18 10:05:41','',11,'http://sgt.com.ua/wp-content/uploads/2025/09/лого-для-сайту-08-1.png',0,'attachment','image/png',0),(174,1,'2025-09-18 10:05:42','2025-09-18 10:05:42','лого для сайту 07','лого для сайту 07','лого для сайту 07','inherit','open','closed','','%d0%bb%d0%be%d0%b3%d0%be-%d0%b4%d0%bb%d1%8f-%d1%81%d0%b0%d0%b9%d1%82%d1%83-07-2','','','2025-09-18 10:05:42','2025-09-18 10:05:42','',11,'http://sgt.com.ua/wp-content/uploads/2025/09/лого-для-сайту-07-1.png',0,'attachment','image/png',0),(175,1,'2025-09-18 10:05:43','2025-09-18 10:05:43','лого для сайту 06','лого для сайту 06','лого для сайту 06','inherit','open','closed','','%d0%bb%d0%be%d0%b3%d0%be-%d0%b4%d0%bb%d1%8f-%d1%81%d0%b0%d0%b9%d1%82%d1%83-06-2','','','2025-09-18 10:05:43','2025-09-18 10:05:43','',11,'http://sgt.com.ua/wp-content/uploads/2025/09/лого-для-сайту-06-1.png',0,'attachment','image/png',0),(176,1,'2025-09-18 10:05:43','2025-09-18 10:05:43','лого для сайту 05','лого для сайту 05','лого для сайту 05','inherit','open','closed','','%d0%bb%d0%be%d0%b3%d0%be-%d0%b4%d0%bb%d1%8f-%d1%81%d0%b0%d0%b9%d1%82%d1%83-05-2','','','2025-09-18 10:05:43','2025-09-18 10:05:43','',11,'http://sgt.com.ua/wp-content/uploads/2025/09/лого-для-сайту-05-1.png',0,'attachment','image/png',0),(177,1,'2025-09-18 10:05:44','2025-09-18 10:05:44','лого для сайту 04','лого для сайту 04','лого для сайту 04','inherit','open','closed','','%d0%bb%d0%be%d0%b3%d0%be-%d0%b4%d0%bb%d1%8f-%d1%81%d0%b0%d0%b9%d1%82%d1%83-04-2','','','2025-09-18 10:05:44','2025-09-18 10:05:44','',11,'http://sgt.com.ua/wp-content/uploads/2025/09/лого-для-сайту-04-1.png',0,'attachment','image/png',0),(178,1,'2025-09-18 10:05:44','2025-09-18 10:05:44','лого для сайту 03','лого для сайту 03','лого для сайту 03','inherit','open','closed','','%d0%bb%d0%be%d0%b3%d0%be-%d0%b4%d0%bb%d1%8f-%d1%81%d0%b0%d0%b9%d1%82%d1%83-03-2','','','2025-09-18 10:05:44','2025-09-18 10:05:44','',11,'http://sgt.com.ua/wp-content/uploads/2025/09/лого-для-сайту-03-1.png',0,'attachment','image/png',0),(179,1,'2025-09-18 10:05:45','2025-09-18 10:05:45','лого для сайту 02','лого для сайту 02','лого для сайту 02','inherit','open','closed','','%d0%bb%d0%be%d0%b3%d0%be-%d0%b4%d0%bb%d1%8f-%d1%81%d0%b0%d0%b9%d1%82%d1%83-02-2','','','2025-09-18 10:05:45','2025-09-18 10:05:45','',11,'http://sgt.com.ua/wp-content/uploads/2025/09/лого-для-сайту-02-1.png',0,'attachment','image/png',0),(180,1,'2025-09-18 10:05:46','2025-09-18 10:05:46','лого для сайту 01','лого для сайту 01','лого для сайту 01','inherit','open','closed','','%d0%bb%d0%be%d0%b3%d0%be-%d0%b4%d0%bb%d1%8f-%d1%81%d0%b0%d0%b9%d1%82%d1%83-01-2','','','2025-09-18 10:05:46','2025-09-18 10:05:46','',11,'http://sgt.com.ua/wp-content/uploads/2025/09/лого-для-сайту-01-1.png',0,'attachment','image/png',0),(181,1,'2025-09-18 10:05:46','2025-09-18 10:05:46','лого для сайту 10','лого для сайту 10','лого для сайту 10','inherit','open','closed','','%d0%bb%d0%be%d0%b3%d0%be-%d0%b4%d0%bb%d1%8f-%d1%81%d0%b0%d0%b9%d1%82%d1%83-10-2','','','2025-09-18 10:05:46','2025-09-18 10:05:46','',11,'http://sgt.com.ua/wp-content/uploads/2025/09/лого-для-сайту-10-1.png',0,'attachment','image/png',0),(182,1,'2025-09-18 10:07:48','2025-09-18 10:07:48','','Цифоровізація бізнесу та консалтинг','','inherit','closed','closed','','11-revision-v1','','','2025-09-18 10:07:48','2025-09-18 10:07:48','',11,'https://sgt.com.ua/?p=182',0,'revision','',0),(183,1,'2025-09-18 10:08:15','2025-09-18 10:08:15','','Цифоровізація бізнесу та консалтинг','','inherit','closed','closed','','11-revision-v1','','','2025-09-18 10:08:15','2025-09-18 10:08:15','',11,'https://sgt.com.ua/?p=183',0,'revision','',0),(184,1,'2025-09-18 10:12:05','2025-09-18 10:12:05','','Цифоровізація бізнесу та консалтинг','','inherit','closed','closed','','11-revision-v1','','','2025-09-18 10:12:05','2025-09-18 10:12:05','',11,'https://sgt.com.ua/?p=184',0,'revision','',0),(186,1,'2025-09-18 11:19:42','2025-09-18 11:19:42','','Цифоровізація бізнесу та консалтинг','','inherit','closed','closed','','11-revision-v1','','','2025-09-18 11:19:42','2025-09-18 11:19:42','',11,'https://sgt.com.ua/?p=186',0,'revision','',0),(187,1,'2025-09-18 11:24:10','2025-09-18 11:24:10','','Цифоровізація бізнесу та консалтинг','','inherit','closed','closed','','11-revision-v1','','','2025-09-18 11:24:10','2025-09-18 11:24:10','',11,'https://sgt.com.ua/?p=187',0,'revision','',0),(188,1,'2025-09-18 11:29:09','2025-09-18 11:29:09','','Цифоровізація бізнесу та консалтинг','','inherit','closed','closed','','11-revision-v1','','','2025-09-18 11:29:09','2025-09-18 11:29:09','',11,'https://sgt.com.ua/?p=188',0,'revision','',0),(189,1,'2025-09-18 11:31:19','2025-09-18 11:31:19','','Цифоровізація бізнесу та консалтинг','','inherit','closed','closed','','11-revision-v1','','','2025-09-18 11:31:19','2025-09-18 11:31:19','',11,'https://sgt.com.ua/?p=189',0,'revision','',0),(190,1,'2025-09-22 08:00:39','2025-09-22 08:00:39','','Цифоровізація бізнесу та консалтинг','','inherit','closed','closed','','11-revision-v1','','','2025-09-22 08:00:39','2025-09-22 08:00:39','',11,'https://sgt.com.ua/?p=190',0,'revision','',0),(191,1,'2025-09-22 08:21:44','2025-09-22 08:21:44','','Цифоровізація бізнесу та консалтинг','','inherit','closed','closed','','11-revision-v1','','','2025-09-22 08:21:44','2025-09-22 08:21:44','',11,'https://sgt.com.ua/?p=191',0,'revision','',0),(193,1,'2025-09-22 08:27:06','2025-09-22 08:27:06','.trust_subsection img {\n width: auto;\n height: 40px;\n}\n@media (max-width: 1024px)\n{\n .trust_subsection a img {\n height: 4.5vw;\n }\n}\n@media (max-width: 768px)\n{\n .trust_subsection a img {\n height: 7.5vw;\n }\n}','smartGT','','publish','closed','closed','','smartgt','','','2025-09-23 10:23:00','2025-09-23 10:23:00','',0,'https://sgt.com.ua/smartgt/',0,'custom_css','',0),(194,1,'2025-09-22 08:27:06','2025-09-22 08:27:06','.trust_subsection img {\n width: auto;\n height: 40px;\n}','smartGT','','inherit','closed','closed','','193-revision-v1','','','2025-09-22 08:27:06','2025-09-22 08:27:06','',193,'https://sgt.com.ua/?p=194',0,'revision','',0),(195,1,'2025-09-22 09:49:37','2025-09-22 09:49:37','лого для сайту 12','лого для сайту 12','лого для сайту 12','inherit','open','closed','','%d0%bb%d0%be%d0%b3%d0%be-%d0%b4%d0%bb%d1%8f-%d1%81%d0%b0%d0%b9%d1%82%d1%83-12-2','','','2025-09-22 09:49:37','2025-09-22 09:49:37','',11,'http://sgt.com.ua/wp-content/uploads/2025/09/лого-для-сайту-12.svg',0,'attachment','image/svg+xml',0),(196,1,'2025-09-22 09:49:37','2025-09-22 09:49:37','лого для сайту 11','лого для сайту 11','лого для сайту 11','inherit','open','closed','','%d0%bb%d0%be%d0%b3%d0%be-%d0%b4%d0%bb%d1%8f-%d1%81%d0%b0%d0%b9%d1%82%d1%83-11-2','','','2025-09-22 09:49:37','2025-09-22 09:49:37','',11,'http://sgt.com.ua/wp-content/uploads/2025/09/лого-для-сайту-11.svg',0,'attachment','image/svg+xml',0),(197,1,'2025-09-22 09:49:38','2025-09-22 09:49:38','лого для сайту 03','лого для сайту 03','лого для сайту 03','inherit','open','closed','','%d0%bb%d0%be%d0%b3%d0%be-%d0%b4%d0%bb%d1%8f-%d1%81%d0%b0%d0%b9%d1%82%d1%83-03-3','','','2025-09-22 09:49:38','2025-09-22 09:49:38','',11,'http://sgt.com.ua/wp-content/uploads/2025/09/лого-для-сайту-03.svg',0,'attachment','image/svg+xml',0),(198,1,'2025-09-22 09:49:39','2025-09-22 09:49:39','лого для сайту 05','лого для сайту 05','лого для сайту 05','inherit','open','closed','','%d0%bb%d0%be%d0%b3%d0%be-%d0%b4%d0%bb%d1%8f-%d1%81%d0%b0%d0%b9%d1%82%d1%83-05-3','','','2025-09-22 09:49:39','2025-09-22 09:49:39','',11,'http://sgt.com.ua/wp-content/uploads/2025/09/лого-для-сайту-05.svg',0,'attachment','image/svg+xml',0),(199,1,'2025-09-22 09:49:39','2025-09-22 09:49:39','лого для сайту 07','лого для сайту 07','лого для сайту 07','inherit','open','closed','','%d0%bb%d0%be%d0%b3%d0%be-%d0%b4%d0%bb%d1%8f-%d1%81%d0%b0%d0%b9%d1%82%d1%83-07-3','','','2025-09-22 09:49:39','2025-09-22 09:49:39','',11,'http://sgt.com.ua/wp-content/uploads/2025/09/лого-для-сайту-07.svg',0,'attachment','image/svg+xml',0),(200,1,'2025-09-22 09:49:40','2025-09-22 09:49:40','лого для сайту 13','лого для сайту 13','лого для сайту 13','inherit','open','closed','','%d0%bb%d0%be%d0%b3%d0%be-%d0%b4%d0%bb%d1%8f-%d1%81%d0%b0%d0%b9%d1%82%d1%83-13','','','2025-09-22 09:49:40','2025-09-22 09:49:40','',11,'http://sgt.com.ua/wp-content/uploads/2025/09/лого-для-сайту-13.svg',0,'attachment','image/svg+xml',0),(201,1,'2025-09-22 09:49:40','2025-09-22 09:49:40','лого для сайту 02','лого для сайту 02','лого для сайту 02','inherit','open','closed','','%d0%bb%d0%be%d0%b3%d0%be-%d0%b4%d0%bb%d1%8f-%d1%81%d0%b0%d0%b9%d1%82%d1%83-02-3','','','2025-09-22 09:49:40','2025-09-22 09:49:40','',11,'http://sgt.com.ua/wp-content/uploads/2025/09/лого-для-сайту-02.svg',0,'attachment','image/svg+xml',0),(202,1,'2025-09-22 09:49:41','2025-09-22 09:49:41','лого для сайту 04','лого для сайту 04','лого для сайту 04','inherit','open','closed','','%d0%bb%d0%be%d0%b3%d0%be-%d0%b4%d0%bb%d1%8f-%d1%81%d0%b0%d0%b9%d1%82%d1%83-04-3','','','2025-09-22 09:49:41','2025-09-22 09:49:41','',11,'http://sgt.com.ua/wp-content/uploads/2025/09/лого-для-сайту-04.svg',0,'attachment','image/svg+xml',0),(203,1,'2025-09-22 09:49:41','2025-09-22 09:49:41','лого для сайту 06','лого для сайту 06','лого для сайту 06','inherit','open','closed','','%d0%bb%d0%be%d0%b3%d0%be-%d0%b4%d0%bb%d1%8f-%d1%81%d0%b0%d0%b9%d1%82%d1%83-06-3','','','2025-09-22 09:49:41','2025-09-22 09:49:41','',11,'http://sgt.com.ua/wp-content/uploads/2025/09/лого-для-сайту-06.svg',0,'attachment','image/svg+xml',0),(204,1,'2025-09-22 09:49:42','2025-09-22 09:49:42','лого для сайту 08','лого для сайту 08','лого для сайту 08','inherit','open','closed','','%d0%bb%d0%be%d0%b3%d0%be-%d0%b4%d0%bb%d1%8f-%d1%81%d0%b0%d0%b9%d1%82%d1%83-08-3','','','2025-09-22 09:49:42','2025-09-22 09:49:42','',11,'http://sgt.com.ua/wp-content/uploads/2025/09/лого-для-сайту-08.svg',0,'attachment','image/svg+xml',0),(205,1,'2025-09-22 09:49:42','2025-09-22 09:49:42','лого для сайту 09','лого для сайту 09','лого для сайту 09','inherit','open','closed','','%d0%bb%d0%be%d0%b3%d0%be-%d0%b4%d0%bb%d1%8f-%d1%81%d0%b0%d0%b9%d1%82%d1%83-09-3','','','2025-09-22 09:49:42','2025-09-22 09:49:42','',11,'http://sgt.com.ua/wp-content/uploads/2025/09/лого-для-сайту-09.svg',0,'attachment','image/svg+xml',0),(206,1,'2025-09-22 09:49:43','2025-09-22 09:49:43','лого для сайту 10','лого для сайту 10','лого для сайту 10','inherit','open','closed','','%d0%bb%d0%be%d0%b3%d0%be-%d0%b4%d0%bb%d1%8f-%d1%81%d0%b0%d0%b9%d1%82%d1%83-10-3','','','2025-09-22 09:49:43','2025-09-22 09:49:43','',11,'http://sgt.com.ua/wp-content/uploads/2025/09/лого-для-сайту-10.svg',0,'attachment','image/svg+xml',0),(207,1,'2025-09-22 09:49:43','2025-09-22 09:49:43','лого для сайту 01','лого для сайту 01','лого для сайту 01','inherit','open','closed','','%d0%bb%d0%be%d0%b3%d0%be-%d0%b4%d0%bb%d1%8f-%d1%81%d0%b0%d0%b9%d1%82%d1%83-01-3','','','2025-09-22 09:49:43','2025-09-22 09:49:43','',11,'http://sgt.com.ua/wp-content/uploads/2025/09/лого-для-сайту-01.svg',0,'attachment','image/svg+xml',0),(208,1,'2025-09-22 09:51:58','2025-09-22 09:51:58','','Цифоровізація бізнесу та консалтинг','','inherit','closed','closed','','11-revision-v1','','','2025-09-22 09:51:58','2025-09-22 09:51:58','',11,'https://sgt.com.ua/?p=208',0,'revision','',0),(210,1,'2025-09-23 10:23:00','2025-09-23 10:23:00','.trust_subsection img {\n width: auto;\n height: 40px;\n}\n@media (max-width: 1024px)\n{\n .trust_subsection a img {\n height: 4.5vw;\n }\n}\n@media (max-width: 768px)\n{\n .trust_subsection a img {\n height: 7.5vw;\n }\n}','smartGT','','inherit','closed','closed','','193-revision-v1','','','2025-09-23 10:23:00','2025-09-23 10:23:00','',193,'https://sgt.com.ua/?p=210',0,'revision','',0),(212,1,'2025-09-23 11:00:55','2025-09-23 11:00:55','','Цифоровізація бізнесу та консалтинг','','inherit','closed','closed','','11-revision-v1','','','2025-09-23 11:00:55','2025-09-23 11:00:55','',11,'https://sgt.com.ua/?p=212',0,'revision','',0),(213,1,'2025-09-23 11:02:11','2025-09-23 11:02:11','','Цифоровізація бізнесу та консалтинг','','inherit','closed','closed','','11-revision-v1','','','2025-09-23 11:02:11','2025-09-23 11:02:11','',11,'https://sgt.com.ua/?p=213',0,'revision','',0),(215,1,'2025-09-23 11:24:05','2025-09-23 11:24:05','youtub – копія','youtub – копія','youtub – копія','inherit','open','closed','','youtub-%d0%ba%d0%be%d0%bf%d1%96%d1%8f','','','2025-09-23 11:24:05','2025-09-23 11:24:05','',0,'http://sgt.com.ua/wp-content/uploads/2025/09/youtub-–-копія.svg',0,'attachment','image/svg+xml',0),(216,1,'2025-09-23 11:24:28','2025-09-23 11:24:28','logo dark orange','logo dark orange','logo dark orange','inherit','open','closed','','logo_dark_orange','','','2025-09-23 11:27:11','2025-09-23 11:27:11','',11,'http://sgt.com.ua/wp-content/uploads/2025/09/logo_dark_orange-1.svg',0,'attachment','image/svg+xml',0),(217,1,'2025-09-23 11:27:10','2025-09-23 11:27:10','','Цифоровізація бізнесу та консалтинг','','inherit','closed','closed','','11-revision-v1','','','2025-09-23 11:27:10','2025-09-23 11:27:10','',11,'https://sgt.com.ua/?p=217',0,'revision','',0),(218,1,'2026-03-30 11:27:58','0000-00-00 00:00:00','','Авточернетка','','auto-draft','open','open','','','','','2026-03-30 11:27:58','0000-00-00 00:00:00','',0,'https://sgt.com.ua/?p=218',0,'post','',0);
/*!40000 ALTER TABLE `wp6k_posts` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp6k_term_relationships`
--
DROP TABLE IF EXISTS `wp6k_term_relationships`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp6k_term_relationships` (
`object_id` bigint(20) unsigned NOT NULL DEFAULT 0,
`term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT 0,
`term_order` int(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`object_id`,`term_taxonomy_id`),
KEY `term_taxonomy_id` (`term_taxonomy_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp6k_term_relationships`
--
LOCK TABLES `wp6k_term_relationships` WRITE;
/*!40000 ALTER TABLE `wp6k_term_relationships` DISABLE KEYS */;
INSERT INTO `wp6k_term_relationships` VALUES (1,1,0);
/*!40000 ALTER TABLE `wp6k_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp6k_term_taxonomy`
--
DROP TABLE IF EXISTS `wp6k_term_taxonomy`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp6k_term_taxonomy` (
`term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`term_id` bigint(20) unsigned NOT NULL DEFAULT 0,
`taxonomy` varchar(32) NOT NULL DEFAULT '',
`description` longtext NOT NULL,
`parent` bigint(20) unsigned NOT NULL DEFAULT 0,
`count` bigint(20) NOT NULL DEFAULT 0,
PRIMARY KEY (`term_taxonomy_id`),
UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
KEY `taxonomy` (`taxonomy`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp6k_term_taxonomy`
--
LOCK TABLES `wp6k_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wp6k_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wp6k_term_taxonomy` VALUES (1,1,'category','',0,0);
/*!40000 ALTER TABLE `wp6k_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp6k_termmeta`
--
DROP TABLE IF EXISTS `wp6k_termmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp6k_termmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`term_id` bigint(20) unsigned NOT NULL DEFAULT 0,
`meta_key` varchar(255) DEFAULT NULL,
`meta_value` longtext DEFAULT NULL,
PRIMARY KEY (`meta_id`),
KEY `term_id` (`term_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp6k_termmeta`
--
LOCK TABLES `wp6k_termmeta` WRITE;
/*!40000 ALTER TABLE `wp6k_termmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp6k_termmeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp6k_terms`
--
DROP TABLE IF EXISTS `wp6k_terms`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp6k_terms` (
`term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(200) NOT NULL DEFAULT '',
`slug` varchar(200) NOT NULL DEFAULT '',
`term_group` bigint(10) NOT NULL DEFAULT 0,
PRIMARY KEY (`term_id`),
KEY `slug` (`slug`(191)),
KEY `name` (`name`(191))
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp6k_terms`
--
LOCK TABLES `wp6k_terms` WRITE;
/*!40000 ALTER TABLE `wp6k_terms` DISABLE KEYS */;
INSERT INTO `wp6k_terms` VALUES (1,'Uncategorized','uncategorized',0);
/*!40000 ALTER TABLE `wp6k_terms` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp6k_usermeta`
--
DROP TABLE IF EXISTS `wp6k_usermeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp6k_usermeta` (
`umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
`meta_key` varchar(255) DEFAULT NULL,
`meta_value` longtext DEFAULT NULL,
PRIMARY KEY (`umeta_id`),
KEY `user_id` (`user_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=51 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp6k_usermeta`
--
LOCK TABLES `wp6k_usermeta` WRITE;
/*!40000 ALTER TABLE `wp6k_usermeta` DISABLE KEYS */;
INSERT INTO `wp6k_usermeta` VALUES (1,1,'nickname','admin'),(2,1,'first_name',''),(3,1,'last_name',''),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'syntax_highlighting','true'),(7,1,'comment_shortcuts','false'),(8,1,'admin_color','fresh'),(9,1,'use_ssl','0'),(10,1,'show_admin_bar_front','true'),(11,1,'locale',''),(12,1,'wp6k_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(13,1,'wp6k_user_level','10'),(14,1,'dismissed_wp_pointers','theme_editor_notice'),(15,1,'show_welcome_panel','0'),(26,1,'session_tokens','a:1:{s:64:\"3a82325473b1b823dbc3884814d0356940ed2cf1e9bd23c0ac14ca17f8f80773\";a:4:{s:10:\"expiration\";i:1775042872;s:2:\"ip\";s:14:\"194.28.101.247\";s:2:\"ua\";s:119:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.3.1 Safari/605.1.15\";s:5:\"login\";i:1774870072;}}'),(17,1,'wp6k_dashboard_quick_press_last_post_id','218'),(18,1,'community-events-location','a:1:{s:2:\"ip\";s:12:\"194.28.101.0\";}'),(34,1,'wpseo_title',''),(33,1,'metaboxhidden_dashboard','a:0:{}'),(35,1,'wpseo_metadesc',''),(36,1,'wpseo_noindex_author',''),(37,1,'wpseo_content_analysis_disable',''),(38,1,'wpseo_keyword_analysis_disable',''),(39,1,'wpseo_inclusive_language_analysis_disable',''),(40,1,'wpseo_user_schema','a:0:{}'),(41,1,'facebook',''),(42,1,'instagram',''),(43,1,'linkedin',''),(44,1,'myspace',''),(45,1,'pinterest',''),(46,1,'soundcloud',''),(47,1,'tumblr',''),(48,1,'twitter',''),(49,1,'youtube',''),(50,1,'wikipedia',''),(20,1,'_yoast_wpseo_profile_updated','1753800266'),(21,1,'mastodon',''),(22,1,'wp6k_persisted_preferences','a:3:{s:14:\"core/edit-post\";a:1:{s:12:\"welcomeGuide\";b:0;}s:9:\"_modified\";s:24:\"2025-03-28T08:26:40.116Z\";s:4:\"core\";a:2:{s:10:\"openPanels\";a:3:{i:0;s:11:\"post-status\";i:1;s:24:\"yoast-seo/document-panel\";i:2;s:15:\"page-attributes\";}s:26:\"isComplementaryAreaVisible\";b:1;}}'),(31,1,'wp6k_yoast_notifications','a:1:{i:0;a:2:{s:7:\"message\";O:61:\"Yoast\\WP\\SEO\\Presenters\\Admin\\Indexing_Notification_Presenter\":3:{s:18:\"\0*\0total_unindexed\";i:4;s:9:\"\0*\0reason\";s:23:\"home_url_option_changed\";s:20:\"\0*\0short_link_helper\";O:38:\"Yoast\\WP\\SEO\\Helpers\\Short_Link_Helper\":2:{s:17:\"\0*\0options_helper\";O:35:\"Yoast\\WP\\SEO\\Helpers\\Options_Helper\":0:{}s:17:\"\0*\0product_helper\";O:35:\"Yoast\\WP\\SEO\\Helpers\\Product_Helper\":0:{}}}s:7:\"options\";a:10:{s:4:\"type\";s:7:\"warning\";s:2:\"id\";s:13:\"wpseo-reindex\";s:4:\"user\";O:7:\"WP_User\":8:{s:4:\"data\";O:8:\"stdClass\":10:{s:2:\"ID\";s:1:\"1\";s:10:\"user_login\";s:5:\"admin\";s:9:\"user_pass\";s:34:\"$P$BIsdbx6fYNqVd59Eglb5zLYA/Xi/FI.\";s:13:\"user_nicename\";s:5:\"admin\";s:10:\"user_email\";s:15:\"info@sgt.com.ua\";s:8:\"user_url\";s:17:\"http://sgt.com.ua\";s:15:\"user_registered\";s:19:\"2023-10-16 15:41:09\";s:19:\"user_activation_key\";s:0:\"\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:5:\"admin\";}s:2:\"ID\";i:1;s:4:\"caps\";a:1:{s:13:\"administrator\";b:1;}s:7:\"cap_key\";s:17:\"wp6k_capabilities\";s:5:\"roles\";a:1:{i:0;s:13:\"administrator\";}s:7:\"allcaps\";a:64:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;s:20:\"wpseo_manage_options\";b:1;s: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;}}}'),(32,1,'closedpostboxes_dashboard','a:0:{}'),(24,1,'closedpostboxes_page','a:1:{i:0;s:10:\"wpseo_meta\";}'),(25,1,'metaboxhidden_page','a:0:{}'),(27,1,'wp6k_user-settings','libraryContent=browse'),(28,1,'wp6k_user-settings-time','1758103761'),(29,1,'meta-box-order_page','a:4:{s:6:\"normal\";s:106:\"acf-group_6531c3fe298b3,acf-group_6531be622cc00,acf-group_6531c4b11de2f,acf-group_6531b970b4dba,wpseo_meta\";s:8:\"advanced\";s:0:\"\";s:4:\"side\";s:0:\"\";s:15:\"acf_after_title\";s:0:\"\";}');
/*!40000 ALTER TABLE `wp6k_usermeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp6k_users`
--
DROP TABLE IF EXISTS `wp6k_users`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp6k_users` (
`ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`user_login` varchar(60) NOT NULL DEFAULT '',
`user_pass` varchar(255) NOT NULL DEFAULT '',
`user_nicename` varchar(50) NOT NULL DEFAULT '',
`user_email` varchar(100) NOT NULL DEFAULT '',
`user_url` varchar(100) NOT NULL DEFAULT '',
`user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`user_activation_key` varchar(255) NOT NULL DEFAULT '',
`user_status` int(11) NOT NULL DEFAULT 0,
`display_name` varchar(250) NOT NULL DEFAULT '',
PRIMARY KEY (`ID`),
KEY `user_login_key` (`user_login`),
KEY `user_nicename` (`user_nicename`),
KEY `user_email` (`user_email`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp6k_users`
--
LOCK TABLES `wp6k_users` WRITE;
/*!40000 ALTER TABLE `wp6k_users` DISABLE KEYS */;
INSERT INTO `wp6k_users` VALUES (1,'admin','$wp$2y$10$jjrRnOQg9tv/eo60exotPO7vH4ewkjob96CuzjreB2gF8CSmwlOsq','admin','info@sgt.com.ua','http://sgt.com.ua','2023-10-16 15:41:09','',0,'admin');
/*!40000 ALTER TABLE `wp6k_users` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp6k_wpmailsmtp_debug_events`
--
DROP TABLE IF EXISTS `wp6k_wpmailsmtp_debug_events`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp6k_wpmailsmtp_debug_events` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`content` text DEFAULT NULL,
`initiator` text DEFAULT NULL,
`event_type` tinyint(3) unsigned NOT NULL DEFAULT 0,
`created_at` timestamp NOT NULL DEFAULT current_timestamp(),
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=33 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp6k_wpmailsmtp_debug_events`
--
LOCK TABLES `wp6k_wpmailsmtp_debug_events` WRITE;
/*!40000 ALTER TABLE `wp6k_wpmailsmtp_debug_events` DISABLE KEYS */;
INSERT INTO `wp6k_wpmailsmtp_debug_events` VALUES (1,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host.','{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Admin\\/SetupWizard.php\",\"line\":1217}',0,'2023-11-16 12:26:01'),(2,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host.','{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Admin\\/Pages\\/TestTab.php\",\"line\":351}',0,'2023-11-16 12:28:55'),(3,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host.','{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Admin\\/Pages\\/TestTab.php\",\"line\":351,\"backtrace\":[{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Admin\\/Pages\\/TestTab.php\",\"line\":351,\"function\":\"wp_mail\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Admin\\/ParentPageAbstract.php\",\"line\":265,\"function\":\"process_post\",\"class\":\"WPMailSMTP\\\\Admin\\\\Pages\\\\TestTab\",\"type\":\"->\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/class-wp-hook.php\",\"line\":310,\"function\":\"process_actions\",\"class\":\"WPMailSMTP\\\\Admin\\\\ParentPageAbstract\",\"type\":\"->\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/class-wp-hook.php\",\"line\":334,\"function\":\"apply_filters\",\"class\":\"WP_Hook\",\"type\":\"->\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/plugin.php\",\"line\":517,\"function\":\"do_action\",\"class\":\"WP_Hook\",\"type\":\"->\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-admin\\/admin.php\",\"line\":175,\"function\":\"do_action\"}]}',0,'2023-11-16 12:29:37'),(4,'An email request was sent.','{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-content\\/themes\\/smartGT\\/functions.php\",\"line\":21,\"backtrace\":[{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-content\\/themes\\/smartGT\\/functions.php\",\"line\":21,\"function\":\"wp_mail\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/class-wp-hook.php\",\"line\":310,\"function\":\"custom_form_submission\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/class-wp-hook.php\",\"line\":334,\"function\":\"apply_filters\",\"class\":\"WP_Hook\",\"type\":\"->\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/plugin.php\",\"line\":517,\"function\":\"do_action\",\"class\":\"WP_Hook\",\"type\":\"->\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/template-loader.php\",\"line\":13,\"function\":\"do_action\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-blog-header.php\",\"line\":19,\"args\":[\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/template-loader.php\"],\"function\":\"require_once\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/index.php\",\"line\":17,\"args\":[\"\\/home\\/lzgqnjwu\\/public_html\\/wp-blog-header.php\"],\"function\":\"require\"}]}',1,'2023-11-16 12:52:44'),(5,'An email request was sent.','{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-content\\/themes\\/smartGT\\/functions.php\",\"line\":21,\"backtrace\":[{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-content\\/themes\\/smartGT\\/functions.php\",\"line\":21,\"function\":\"wp_mail\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/class-wp-hook.php\",\"line\":310,\"function\":\"custom_form_submission\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/class-wp-hook.php\",\"line\":334,\"function\":\"apply_filters\",\"class\":\"WP_Hook\",\"type\":\"->\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/plugin.php\",\"line\":517,\"function\":\"do_action\",\"class\":\"WP_Hook\",\"type\":\"->\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/template-loader.php\",\"line\":13,\"function\":\"do_action\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-blog-header.php\",\"line\":19,\"args\":[\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/template-loader.php\"],\"function\":\"require_once\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/index.php\",\"line\":17,\"args\":[\"\\/home\\/lzgqnjwu\\/public_html\\/wp-blog-header.php\"],\"function\":\"require\"}]}',1,'2023-11-16 12:53:16'),(6,'An email request was sent.','{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-content\\/themes\\/smartGT\\/functions.php\",\"line\":21,\"backtrace\":[{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-content\\/themes\\/smartGT\\/functions.php\",\"line\":21,\"function\":\"wp_mail\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/class-wp-hook.php\",\"line\":310,\"function\":\"custom_form_submission\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/class-wp-hook.php\",\"line\":334,\"function\":\"apply_filters\",\"class\":\"WP_Hook\",\"type\":\"->\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/plugin.php\",\"line\":517,\"function\":\"do_action\",\"class\":\"WP_Hook\",\"type\":\"->\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/template-loader.php\",\"line\":13,\"function\":\"do_action\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-blog-header.php\",\"line\":19,\"args\":[\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/template-loader.php\"],\"function\":\"require_once\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/index.php\",\"line\":17,\"args\":[\"\\/home\\/lzgqnjwu\\/public_html\\/wp-blog-header.php\"],\"function\":\"require\"}]}',1,'2023-11-16 12:54:07'),(7,'An email request was sent.','{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-content\\/themes\\/smartGT\\/functions.php\",\"line\":21,\"backtrace\":[{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-content\\/themes\\/smartGT\\/functions.php\",\"line\":21,\"function\":\"wp_mail\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/class-wp-hook.php\",\"line\":310,\"function\":\"custom_form_submission\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/class-wp-hook.php\",\"line\":334,\"function\":\"apply_filters\",\"class\":\"WP_Hook\",\"type\":\"->\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/plugin.php\",\"line\":517,\"function\":\"do_action\",\"class\":\"WP_Hook\",\"type\":\"->\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/template-loader.php\",\"line\":13,\"function\":\"do_action\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-blog-header.php\",\"line\":19,\"args\":[\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/template-loader.php\"],\"function\":\"require_once\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/index.php\",\"line\":17,\"args\":[\"\\/home\\/lzgqnjwu\\/public_html\\/wp-blog-header.php\"],\"function\":\"require\"}]}',1,'2023-11-16 13:02:01'),(8,'An email request was sent.','{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Admin\\/Pages\\/TestTab.php\",\"line\":351,\"backtrace\":[{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Admin\\/Pages\\/TestTab.php\",\"line\":351,\"function\":\"wp_mail\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Admin\\/ParentPageAbstract.php\",\"line\":265,\"function\":\"process_post\",\"class\":\"WPMailSMTP\\\\Admin\\\\Pages\\\\TestTab\",\"type\":\"->\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/class-wp-hook.php\",\"line\":310,\"function\":\"process_actions\",\"class\":\"WPMailSMTP\\\\Admin\\\\ParentPageAbstract\",\"type\":\"->\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/class-wp-hook.php\",\"line\":334,\"function\":\"apply_filters\",\"class\":\"WP_Hook\",\"type\":\"->\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/plugin.php\",\"line\":517,\"function\":\"do_action\",\"class\":\"WP_Hook\",\"type\":\"->\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-admin\\/admin.php\",\"line\":175,\"function\":\"do_action\"}]}',1,'2023-11-16 13:04:47'),(9,'An email request was sent.','{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Admin\\/Pages\\/TestTab.php\",\"line\":351,\"backtrace\":[{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Admin\\/Pages\\/TestTab.php\",\"line\":351,\"function\":\"wp_mail\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Admin\\/ParentPageAbstract.php\",\"line\":265,\"function\":\"process_post\",\"class\":\"WPMailSMTP\\\\Admin\\\\Pages\\\\TestTab\",\"type\":\"->\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/class-wp-hook.php\",\"line\":310,\"function\":\"process_actions\",\"class\":\"WPMailSMTP\\\\Admin\\\\ParentPageAbstract\",\"type\":\"->\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/class-wp-hook.php\",\"line\":334,\"function\":\"apply_filters\",\"class\":\"WP_Hook\",\"type\":\"->\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/plugin.php\",\"line\":517,\"function\":\"do_action\",\"class\":\"WP_Hook\",\"type\":\"->\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-admin\\/admin.php\",\"line\":175,\"function\":\"do_action\"}]}',1,'2023-11-16 13:05:38'),(10,'An email request was sent.','{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-content\\/themes\\/smartGT\\/functions.php\",\"line\":21,\"backtrace\":[{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-content\\/themes\\/smartGT\\/functions.php\",\"line\":21,\"function\":\"wp_mail\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/class-wp-hook.php\",\"line\":310,\"function\":\"custom_form_submission\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/class-wp-hook.php\",\"line\":334,\"function\":\"apply_filters\",\"class\":\"WP_Hook\",\"type\":\"->\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/plugin.php\",\"line\":517,\"function\":\"do_action\",\"class\":\"WP_Hook\",\"type\":\"->\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/template-loader.php\",\"line\":13,\"function\":\"do_action\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-blog-header.php\",\"line\":19,\"args\":[\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/template-loader.php\"],\"function\":\"require_once\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/index.php\",\"line\":17,\"args\":[\"\\/home\\/lzgqnjwu\\/public_html\\/wp-blog-header.php\"],\"function\":\"require\"}]}',1,'2023-11-16 13:07:05'),(11,'An email request was sent.','{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-content\\/themes\\/smartGT\\/functions.php\",\"line\":21,\"backtrace\":[{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-content\\/themes\\/smartGT\\/functions.php\",\"line\":21,\"function\":\"wp_mail\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/class-wp-hook.php\",\"line\":310,\"function\":\"custom_form_submission\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/class-wp-hook.php\",\"line\":334,\"function\":\"apply_filters\",\"class\":\"WP_Hook\",\"type\":\"->\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/plugin.php\",\"line\":517,\"function\":\"do_action\",\"class\":\"WP_Hook\",\"type\":\"->\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/template-loader.php\",\"line\":13,\"function\":\"do_action\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-blog-header.php\",\"line\":19,\"args\":[\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/template-loader.php\"],\"function\":\"require_once\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/index.php\",\"line\":17,\"args\":[\"\\/home\\/lzgqnjwu\\/public_html\\/wp-blog-header.php\"],\"function\":\"require\"}]}',1,'2023-11-16 13:07:41'),(12,'An email request was sent.','{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-content\\/themes\\/smartGT\\/functions.php\",\"line\":21,\"backtrace\":[{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-content\\/themes\\/smartGT\\/functions.php\",\"line\":21,\"function\":\"wp_mail\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/class-wp-hook.php\",\"line\":310,\"function\":\"custom_form_submission\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/class-wp-hook.php\",\"line\":334,\"function\":\"apply_filters\",\"class\":\"WP_Hook\",\"type\":\"->\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/plugin.php\",\"line\":517,\"function\":\"do_action\",\"class\":\"WP_Hook\",\"type\":\"->\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/template-loader.php\",\"line\":13,\"function\":\"do_action\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-blog-header.php\",\"line\":19,\"args\":[\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/template-loader.php\"],\"function\":\"require_once\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/index.php\",\"line\":17,\"args\":[\"\\/home\\/lzgqnjwu\\/public_html\\/wp-blog-header.php\"],\"function\":\"require\"}]}',1,'2023-11-16 13:08:59'),(13,'An email request was sent.','{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-content\\/themes\\/smartGT\\/functions.php\",\"line\":21,\"backtrace\":[{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-content\\/themes\\/smartGT\\/functions.php\",\"line\":21,\"function\":\"wp_mail\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/class-wp-hook.php\",\"line\":310,\"function\":\"custom_form_submission\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/class-wp-hook.php\",\"line\":334,\"function\":\"apply_filters\",\"class\":\"WP_Hook\",\"type\":\"->\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/plugin.php\",\"line\":517,\"function\":\"do_action\",\"class\":\"WP_Hook\",\"type\":\"->\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/template-loader.php\",\"line\":13,\"function\":\"do_action\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-blog-header.php\",\"line\":19,\"args\":[\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/template-loader.php\"],\"function\":\"require_once\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/index.php\",\"line\":17,\"args\":[\"\\/home\\/lzgqnjwu\\/public_html\\/wp-blog-header.php\"],\"function\":\"require\"}]}',1,'2023-11-16 13:11:36'),(14,'An email request was sent.','{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-content\\/themes\\/smartGT\\/functions.php\",\"line\":21,\"backtrace\":[{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-content\\/themes\\/smartGT\\/functions.php\",\"line\":21,\"function\":\"wp_mail\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/class-wp-hook.php\",\"line\":310,\"function\":\"custom_form_submission\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/class-wp-hook.php\",\"line\":334,\"function\":\"apply_filters\",\"class\":\"WP_Hook\",\"type\":\"->\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/plugin.php\",\"line\":517,\"function\":\"do_action\",\"class\":\"WP_Hook\",\"type\":\"->\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/template-loader.php\",\"line\":13,\"function\":\"do_action\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-blog-header.php\",\"line\":19,\"args\":[\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/template-loader.php\"],\"function\":\"require_once\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/index.php\",\"line\":17,\"args\":[\"\\/home\\/lzgqnjwu\\/public_html\\/wp-blog-header.php\"],\"function\":\"require\"}]}',1,'2023-11-16 13:12:54'),(15,'An email request was sent.','{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-content\\/themes\\/smartGT\\/functions.php\",\"line\":21,\"backtrace\":[{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-content\\/themes\\/smartGT\\/functions.php\",\"line\":21,\"function\":\"wp_mail\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/class-wp-hook.php\",\"line\":310,\"function\":\"custom_form_submission\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/class-wp-hook.php\",\"line\":334,\"function\":\"apply_filters\",\"class\":\"WP_Hook\",\"type\":\"->\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/plugin.php\",\"line\":517,\"function\":\"do_action\",\"class\":\"WP_Hook\",\"type\":\"->\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/template-loader.php\",\"line\":13,\"function\":\"do_action\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-blog-header.php\",\"line\":19,\"args\":[\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/template-loader.php\"],\"function\":\"require_once\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/index.php\",\"line\":17,\"args\":[\"\\/home\\/lzgqnjwu\\/public_html\\/wp-blog-header.php\"],\"function\":\"require\"}]}',1,'2023-11-16 13:15:05'),(16,'An email request was sent.','{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-content\\/themes\\/smartGT\\/functions.php\",\"line\":21,\"backtrace\":[{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-content\\/themes\\/smartGT\\/functions.php\",\"line\":21,\"function\":\"wp_mail\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/class-wp-hook.php\",\"line\":310,\"function\":\"custom_form_submission\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/class-wp-hook.php\",\"line\":334,\"function\":\"apply_filters\",\"class\":\"WP_Hook\",\"type\":\"->\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/plugin.php\",\"line\":517,\"function\":\"do_action\",\"class\":\"WP_Hook\",\"type\":\"->\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/template-loader.php\",\"line\":13,\"function\":\"do_action\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-blog-header.php\",\"line\":19,\"args\":[\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/template-loader.php\"],\"function\":\"require_once\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/index.php\",\"line\":17,\"args\":[\"\\/home\\/lzgqnjwu\\/public_html\\/wp-blog-header.php\"],\"function\":\"require\"}]}',1,'2023-11-16 13:15:48'),(17,'An email request was sent.','{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-content\\/themes\\/smartGT\\/functions.php\",\"line\":21,\"backtrace\":[{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-content\\/themes\\/smartGT\\/functions.php\",\"line\":21,\"function\":\"wp_mail\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/class-wp-hook.php\",\"line\":310,\"function\":\"custom_form_submission\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/class-wp-hook.php\",\"line\":334,\"function\":\"apply_filters\",\"class\":\"WP_Hook\",\"type\":\"->\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/plugin.php\",\"line\":517,\"function\":\"do_action\",\"class\":\"WP_Hook\",\"type\":\"->\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/template-loader.php\",\"line\":13,\"function\":\"do_action\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-blog-header.php\",\"line\":19,\"args\":[\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/template-loader.php\"],\"function\":\"require_once\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/index.php\",\"line\":17,\"args\":[\"\\/home\\/lzgqnjwu\\/public_html\\/wp-blog-header.php\"],\"function\":\"require\"}]}',1,'2023-11-16 13:32:34'),(18,'An email request was sent.','{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Admin\\/Pages\\/TestTab.php\",\"line\":351,\"backtrace\":[{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Admin\\/Pages\\/TestTab.php\",\"line\":351,\"function\":\"wp_mail\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Admin\\/ParentPageAbstract.php\",\"line\":265,\"function\":\"process_post\",\"class\":\"WPMailSMTP\\\\Admin\\\\Pages\\\\TestTab\",\"type\":\"->\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/class-wp-hook.php\",\"line\":310,\"function\":\"process_actions\",\"class\":\"WPMailSMTP\\\\Admin\\\\ParentPageAbstract\",\"type\":\"->\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/class-wp-hook.php\",\"line\":334,\"function\":\"apply_filters\",\"class\":\"WP_Hook\",\"type\":\"->\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/plugin.php\",\"line\":517,\"function\":\"do_action\",\"class\":\"WP_Hook\",\"type\":\"->\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-admin\\/admin.php\",\"line\":175,\"function\":\"do_action\"}]}',1,'2023-11-16 13:39:04'),(19,'An email request was sent.','{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-content\\/themes\\/smartGT\\/functions.php\",\"line\":21,\"backtrace\":[{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-content\\/themes\\/smartGT\\/functions.php\",\"line\":21,\"function\":\"wp_mail\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/class-wp-hook.php\",\"line\":310,\"function\":\"custom_form_submission\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/class-wp-hook.php\",\"line\":334,\"function\":\"apply_filters\",\"class\":\"WP_Hook\",\"type\":\"->\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/plugin.php\",\"line\":517,\"function\":\"do_action\",\"class\":\"WP_Hook\",\"type\":\"->\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/template-loader.php\",\"line\":13,\"function\":\"do_action\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-blog-header.php\",\"line\":19,\"args\":[\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/template-loader.php\"],\"function\":\"require_once\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/index.php\",\"line\":17,\"args\":[\"\\/home\\/lzgqnjwu\\/public_html\\/wp-blog-header.php\"],\"function\":\"require\"}]}',1,'2023-11-16 13:40:54'),(20,'An email request was sent.','{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-content\\/themes\\/smartGT\\/functions.php\",\"line\":21,\"backtrace\":[{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-content\\/themes\\/smartGT\\/functions.php\",\"line\":21,\"function\":\"wp_mail\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/class-wp-hook.php\",\"line\":310,\"function\":\"custom_form_submission\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/class-wp-hook.php\",\"line\":334,\"function\":\"apply_filters\",\"class\":\"WP_Hook\",\"type\":\"->\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/plugin.php\",\"line\":517,\"function\":\"do_action\",\"class\":\"WP_Hook\",\"type\":\"->\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/template-loader.php\",\"line\":13,\"function\":\"do_action\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-blog-header.php\",\"line\":19,\"args\":[\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/template-loader.php\"],\"function\":\"require_once\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/index.php\",\"line\":17,\"args\":[\"\\/home\\/lzgqnjwu\\/public_html\\/wp-blog-header.php\"],\"function\":\"require\"}]}',1,'2023-11-16 14:01:31'),(21,'An email request was sent.','{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-content\\/themes\\/smartGT\\/functions.php\",\"line\":21,\"backtrace\":[{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-content\\/themes\\/smartGT\\/functions.php\",\"line\":21,\"function\":\"wp_mail\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/class-wp-hook.php\",\"line\":310,\"function\":\"custom_form_submission\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/class-wp-hook.php\",\"line\":334,\"function\":\"apply_filters\",\"class\":\"WP_Hook\",\"type\":\"->\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/plugin.php\",\"line\":517,\"function\":\"do_action\",\"class\":\"WP_Hook\",\"type\":\"->\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/template-loader.php\",\"line\":13,\"function\":\"do_action\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-blog-header.php\",\"line\":19,\"args\":[\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/template-loader.php\"],\"function\":\"require_once\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/index.php\",\"line\":17,\"args\":[\"\\/home\\/lzgqnjwu\\/public_html\\/wp-blog-header.php\"],\"function\":\"require\"}]}',1,'2023-11-16 14:08:55'),(22,'An email request was sent.','{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-content\\/themes\\/smartGT\\/functions.php\",\"line\":21,\"backtrace\":[{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-content\\/themes\\/smartGT\\/functions.php\",\"line\":21,\"function\":\"wp_mail\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/class-wp-hook.php\",\"line\":310,\"function\":\"custom_form_submission\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/class-wp-hook.php\",\"line\":334,\"function\":\"apply_filters\",\"class\":\"WP_Hook\",\"type\":\"->\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/plugin.php\",\"line\":517,\"function\":\"do_action\",\"class\":\"WP_Hook\",\"type\":\"->\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/template-loader.php\",\"line\":13,\"function\":\"do_action\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-blog-header.php\",\"line\":19,\"args\":[\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/template-loader.php\"],\"function\":\"require_once\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/index.php\",\"line\":17,\"args\":[\"\\/home\\/lzgqnjwu\\/public_html\\/wp-blog-header.php\"],\"function\":\"require\"}]}',1,'2023-11-16 14:10:47'),(23,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out','{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-content\\/themes\\/smartGT\\/functions.php\",\"line\":21,\"backtrace\":[{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-content\\/themes\\/smartGT\\/functions.php\",\"line\":21,\"function\":\"wp_mail\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/class-wp-hook.php\",\"line\":310,\"function\":\"custom_form_submission\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/class-wp-hook.php\",\"line\":334,\"function\":\"apply_filters\",\"class\":\"WP_Hook\",\"type\":\"->\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/plugin.php\",\"line\":517,\"function\":\"do_action\",\"class\":\"WP_Hook\",\"type\":\"->\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/template-loader.php\",\"line\":13,\"function\":\"do_action\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-blog-header.php\",\"line\":19,\"args\":[\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/template-loader.php\"],\"function\":\"require_once\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/index.php\",\"line\":17,\"args\":[\"\\/home\\/lzgqnjwu\\/public_html\\/wp-blog-header.php\"],\"function\":\"require\"}]}',0,'2023-11-16 14:38:57'),(24,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out\r\nDebug Output:\r\nConnection: opening to ssl://outlook.office365.com:465, timeout=300, options=array()\r\nConnection failed. Error #2: stream_socket_client(): unable to connect to ssl://outlook.office365.com:465 (Connection timed out) [/home/lzgqnjwu/sites/sgt.com.ua/wp-includes/PHPMailer/SMTP.php line 397]\r\nSMTP ERROR: Failed to connect to server: Connection timed out (110)\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to server','{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-content\\/themes\\/smartGT\\/functions.php\",\"line\":21,\"backtrace\":[{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-content\\/themes\\/smartGT\\/functions.php\",\"line\":21,\"function\":\"wp_mail\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/class-wp-hook.php\",\"line\":310,\"function\":\"custom_form_submission\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/class-wp-hook.php\",\"line\":334,\"function\":\"apply_filters\",\"class\":\"WP_Hook\",\"type\":\"->\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/plugin.php\",\"line\":517,\"function\":\"do_action\",\"class\":\"WP_Hook\",\"type\":\"->\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/template-loader.php\",\"line\":13,\"function\":\"do_action\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-blog-header.php\",\"line\":19,\"args\":[\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/template-loader.php\"],\"function\":\"require_once\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/index.php\",\"line\":17,\"args\":[\"\\/home\\/lzgqnjwu\\/public_html\\/wp-blog-header.php\"],\"function\":\"require\"}]}',1,'2023-11-16 14:38:57'),(25,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out','{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-content\\/themes\\/smartGT\\/functions.php\",\"line\":21,\"backtrace\":[{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-content\\/themes\\/smartGT\\/functions.php\",\"line\":21,\"function\":\"wp_mail\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/class-wp-hook.php\",\"line\":310,\"function\":\"custom_form_submission\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/class-wp-hook.php\",\"line\":334,\"function\":\"apply_filters\",\"class\":\"WP_Hook\",\"type\":\"->\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/plugin.php\",\"line\":517,\"function\":\"do_action\",\"class\":\"WP_Hook\",\"type\":\"->\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/template-loader.php\",\"line\":13,\"function\":\"do_action\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-blog-header.php\",\"line\":19,\"args\":[\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/template-loader.php\"],\"function\":\"require_once\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/index.php\",\"line\":17,\"args\":[\"\\/home\\/lzgqnjwu\\/public_html\\/wp-blog-header.php\"],\"function\":\"require\"}]}',0,'2023-11-16 14:40:25'),(26,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out\r\nDebug Output:\r\nConnection: opening to ssl://outlook.office365.com:465, timeout=300, options=array()\r\nConnection failed. Error #2: stream_socket_client(): unable to connect to ssl://outlook.office365.com:465 (Connection timed out) [/home/lzgqnjwu/sites/sgt.com.ua/wp-includes/PHPMailer/SMTP.php line 397]\r\nSMTP ERROR: Failed to connect to server: Connection timed out (110)\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to server','{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-content\\/themes\\/smartGT\\/functions.php\",\"line\":21,\"backtrace\":[{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-content\\/themes\\/smartGT\\/functions.php\",\"line\":21,\"function\":\"wp_mail\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/class-wp-hook.php\",\"line\":310,\"function\":\"custom_form_submission\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/class-wp-hook.php\",\"line\":334,\"function\":\"apply_filters\",\"class\":\"WP_Hook\",\"type\":\"->\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/plugin.php\",\"line\":517,\"function\":\"do_action\",\"class\":\"WP_Hook\",\"type\":\"->\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/template-loader.php\",\"line\":13,\"function\":\"do_action\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-blog-header.php\",\"line\":19,\"args\":[\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/template-loader.php\"],\"function\":\"require_once\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/index.php\",\"line\":17,\"args\":[\"\\/home\\/lzgqnjwu\\/public_html\\/wp-blog-header.php\"],\"function\":\"require\"}]}',1,'2023-11-16 14:40:25'),(27,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out','{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-content\\/themes\\/smartGT\\/functions.php\",\"line\":21,\"backtrace\":[{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-content\\/themes\\/smartGT\\/functions.php\",\"line\":21,\"function\":\"wp_mail\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/class-wp-hook.php\",\"line\":310,\"function\":\"custom_form_submission\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/class-wp-hook.php\",\"line\":334,\"function\":\"apply_filters\",\"class\":\"WP_Hook\",\"type\":\"->\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/plugin.php\",\"line\":517,\"function\":\"do_action\",\"class\":\"WP_Hook\",\"type\":\"->\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/template-loader.php\",\"line\":13,\"function\":\"do_action\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-blog-header.php\",\"line\":19,\"args\":[\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/template-loader.php\"],\"function\":\"require_once\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/index.php\",\"line\":17,\"args\":[\"\\/home\\/lzgqnjwu\\/public_html\\/wp-blog-header.php\"],\"function\":\"require\"}]}',0,'2023-11-16 14:41:05'),(28,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out\r\nDebug Output:\r\nConnection: opening to ssl://outlook.office365.com:465, timeout=300, options=array()\r\nConnection failed. Error #2: stream_socket_client(): unable to connect to ssl://outlook.office365.com:465 (Connection timed out) [/home/lzgqnjwu/sites/sgt.com.ua/wp-includes/PHPMailer/SMTP.php line 397]\r\nSMTP ERROR: Failed to connect to server: Connection timed out (110)\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to server','{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-content\\/themes\\/smartGT\\/functions.php\",\"line\":21,\"backtrace\":[{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-content\\/themes\\/smartGT\\/functions.php\",\"line\":21,\"function\":\"wp_mail\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/class-wp-hook.php\",\"line\":310,\"function\":\"custom_form_submission\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/class-wp-hook.php\",\"line\":334,\"function\":\"apply_filters\",\"class\":\"WP_Hook\",\"type\":\"->\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/plugin.php\",\"line\":517,\"function\":\"do_action\",\"class\":\"WP_Hook\",\"type\":\"->\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/template-loader.php\",\"line\":13,\"function\":\"do_action\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-blog-header.php\",\"line\":19,\"args\":[\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/template-loader.php\"],\"function\":\"require_once\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/index.php\",\"line\":17,\"args\":[\"\\/home\\/lzgqnjwu\\/public_html\\/wp-blog-header.php\"],\"function\":\"require\"}]}',1,'2023-11-16 14:41:05'),(29,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out','{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-content\\/themes\\/smartGT\\/functions.php\",\"line\":21,\"backtrace\":[{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-content\\/themes\\/smartGT\\/functions.php\",\"line\":21,\"function\":\"wp_mail\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/class-wp-hook.php\",\"line\":310,\"function\":\"custom_form_submission\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/class-wp-hook.php\",\"line\":334,\"function\":\"apply_filters\",\"class\":\"WP_Hook\",\"type\":\"->\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/plugin.php\",\"line\":517,\"function\":\"do_action\",\"class\":\"WP_Hook\",\"type\":\"->\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/template-loader.php\",\"line\":13,\"function\":\"do_action\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-blog-header.php\",\"line\":19,\"args\":[\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/template-loader.php\"],\"function\":\"require_once\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/index.php\",\"line\":17,\"args\":[\"\\/home\\/lzgqnjwu\\/public_html\\/wp-blog-header.php\"],\"function\":\"require\"}]}',0,'2023-11-16 14:47:26'),(30,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out\r\nDebug Output:\r\nConnection: opening to ssl://outlook.office365.com:465, timeout=300, options=array()\r\nConnection failed. Error #2: stream_socket_client(): unable to connect to ssl://outlook.office365.com:465 (Connection timed out) [/home/lzgqnjwu/sites/sgt.com.ua/wp-includes/PHPMailer/SMTP.php line 397]\r\nSMTP ERROR: Failed to connect to server: Connection timed out (110)\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to server','{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-content\\/themes\\/smartGT\\/functions.php\",\"line\":21,\"backtrace\":[{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-content\\/themes\\/smartGT\\/functions.php\",\"line\":21,\"function\":\"wp_mail\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/class-wp-hook.php\",\"line\":310,\"function\":\"custom_form_submission\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/class-wp-hook.php\",\"line\":334,\"function\":\"apply_filters\",\"class\":\"WP_Hook\",\"type\":\"->\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/plugin.php\",\"line\":517,\"function\":\"do_action\",\"class\":\"WP_Hook\",\"type\":\"->\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/template-loader.php\",\"line\":13,\"function\":\"do_action\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-blog-header.php\",\"line\":19,\"args\":[\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/template-loader.php\"],\"function\":\"require_once\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/index.php\",\"line\":17,\"args\":[\"\\/home\\/lzgqnjwu\\/public_html\\/wp-blog-header.php\"],\"function\":\"require\"}]}',1,'2023-11-16 14:47:26'),(31,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out','{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-content\\/themes\\/smartGT\\/functions.php\",\"line\":21,\"backtrace\":[{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-content\\/themes\\/smartGT\\/functions.php\",\"line\":21,\"function\":\"wp_mail\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/class-wp-hook.php\",\"line\":310,\"function\":\"custom_form_submission\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/class-wp-hook.php\",\"line\":334,\"function\":\"apply_filters\",\"class\":\"WP_Hook\",\"type\":\"->\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/plugin.php\",\"line\":517,\"function\":\"do_action\",\"class\":\"WP_Hook\",\"type\":\"->\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/template-loader.php\",\"line\":13,\"function\":\"do_action\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-blog-header.php\",\"line\":19,\"args\":[\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/template-loader.php\"],\"function\":\"require_once\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/index.php\",\"line\":17,\"args\":[\"\\/home\\/lzgqnjwu\\/public_html\\/wp-blog-header.php\"],\"function\":\"require\"}]}',0,'2023-11-16 14:49:59'),(32,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out\r\nDebug Output:\r\nConnection: opening to ssl://outlook.office365.com:465, timeout=300, options=array()\r\nConnection failed. Error #2: stream_socket_client(): unable to connect to ssl://outlook.office365.com:465 (Connection timed out) [/home/lzgqnjwu/sites/sgt.com.ua/wp-includes/PHPMailer/SMTP.php line 397]\r\nSMTP ERROR: Failed to connect to server: Connection timed out (110)\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to server','{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-content\\/themes\\/smartGT\\/functions.php\",\"line\":21,\"backtrace\":[{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-content\\/themes\\/smartGT\\/functions.php\",\"line\":21,\"function\":\"wp_mail\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/class-wp-hook.php\",\"line\":310,\"function\":\"custom_form_submission\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/class-wp-hook.php\",\"line\":334,\"function\":\"apply_filters\",\"class\":\"WP_Hook\",\"type\":\"->\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/plugin.php\",\"line\":517,\"function\":\"do_action\",\"class\":\"WP_Hook\",\"type\":\"->\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/template-loader.php\",\"line\":13,\"function\":\"do_action\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/wp-blog-header.php\",\"line\":19,\"args\":[\"\\/home\\/lzgqnjwu\\/public_html\\/wp-includes\\/template-loader.php\"],\"function\":\"require_once\"},{\"file\":\"\\/home\\/lzgqnjwu\\/public_html\\/index.php\",\"line\":17,\"args\":[\"\\/home\\/lzgqnjwu\\/public_html\\/wp-blog-header.php\"],\"function\":\"require\"}]}',1,'2023-11-16 14:49:59');
/*!40000 ALTER TABLE `wp6k_wpmailsmtp_debug_events` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp6k_wpmailsmtp_tasks_meta`
--
DROP TABLE IF EXISTS `wp6k_wpmailsmtp_tasks_meta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp6k_wpmailsmtp_tasks_meta` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`action` varchar(255) NOT NULL,
`data` longtext NOT NULL,
`date` datetime NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp6k_wpmailsmtp_tasks_meta`
--
LOCK TABLES `wp6k_wpmailsmtp_tasks_meta` WRITE;
/*!40000 ALTER TABLE `wp6k_wpmailsmtp_tasks_meta` DISABLE KEYS */;
INSERT INTO `wp6k_wpmailsmtp_tasks_meta` VALUES (1,'wp_mail_smtp_admin_notifications_update','W10=','2023-11-16 14:26:09');
/*!40000 ALTER TABLE `wp6k_wpmailsmtp_tasks_meta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp6k_yoast_indexable`
--
DROP TABLE IF EXISTS `wp6k_yoast_indexable`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp6k_yoast_indexable` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`permalink` longtext DEFAULT NULL,
`permalink_hash` varchar(40) DEFAULT NULL,
`object_id` bigint(20) DEFAULT NULL,
`object_type` varchar(32) NOT NULL,
`object_sub_type` varchar(32) DEFAULT NULL,
`author_id` bigint(20) DEFAULT NULL,
`post_parent` bigint(20) DEFAULT NULL,
`title` text DEFAULT NULL,
`description` mediumtext DEFAULT NULL,
`breadcrumb_title` text DEFAULT NULL,
`post_status` varchar(20) DEFAULT NULL,
`is_public` tinyint(1) DEFAULT NULL,
`is_protected` tinyint(1) DEFAULT 0,
`has_public_posts` tinyint(1) DEFAULT NULL,
`number_of_pages` int(11) unsigned DEFAULT NULL,
`canonical` longtext DEFAULT NULL,
`primary_focus_keyword` varchar(191) DEFAULT NULL,
`primary_focus_keyword_score` int(3) DEFAULT NULL,
`readability_score` int(3) DEFAULT NULL,
`is_cornerstone` tinyint(1) DEFAULT 0,
`is_robots_noindex` tinyint(1) DEFAULT 0,
`is_robots_nofollow` tinyint(1) DEFAULT 0,
`is_robots_noarchive` tinyint(1) DEFAULT 0,
`is_robots_noimageindex` tinyint(1) DEFAULT 0,
`is_robots_nosnippet` tinyint(1) DEFAULT 0,
`twitter_title` text DEFAULT NULL,
`twitter_image` longtext DEFAULT NULL,
`twitter_description` longtext DEFAULT NULL,
`twitter_image_id` varchar(191) DEFAULT NULL,
`twitter_image_source` text DEFAULT NULL,
`open_graph_title` text DEFAULT NULL,
`open_graph_description` longtext DEFAULT NULL,
`open_graph_image` longtext DEFAULT NULL,
`open_graph_image_id` varchar(191) DEFAULT NULL,
`open_graph_image_source` text DEFAULT NULL,
`open_graph_image_meta` mediumtext DEFAULT NULL,
`link_count` int(11) DEFAULT NULL,
`incoming_link_count` int(11) DEFAULT NULL,
`prominent_words_version` int(11) unsigned DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
`blog_id` bigint(20) NOT NULL DEFAULT 1,
`language` varchar(32) DEFAULT NULL,
`region` varchar(32) DEFAULT NULL,
`schema_page_type` varchar(64) DEFAULT NULL,
`schema_article_type` varchar(64) DEFAULT NULL,
`has_ancestors` tinyint(1) DEFAULT 0,
`estimated_reading_time_minutes` int(11) DEFAULT NULL,
`version` int(11) DEFAULT 1,
`object_last_modified` datetime DEFAULT NULL,
`object_published_at` datetime DEFAULT NULL,
`inclusive_language_score` int(3) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `object_type_and_sub_type` (`object_type`,`object_sub_type`),
KEY `object_id_and_type` (`object_id`,`object_type`),
KEY `permalink_hash_and_object_type` (`permalink_hash`,`object_type`),
KEY `subpages` (`post_parent`,`object_type`,`post_status`,`object_id`),
KEY `prominent_words` (`prominent_words_version`,`object_type`,`object_sub_type`,`post_status`),
KEY `published_sitemap_index` (`object_published_at`,`is_robots_noindex`,`object_type`,`object_sub_type`)
) ENGINE=MyISAM AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp6k_yoast_indexable`
--
LOCK TABLES `wp6k_yoast_indexable` WRITE;
/*!40000 ALTER TABLE `wp6k_yoast_indexable` DISABLE KEYS */;
INSERT INTO `wp6k_yoast_indexable` VALUES (1,'https://sgt.com.ua/','19:95fae419a09f66c4fa87e5b28d3228c4',NULL,'home-page',NULL,NULL,NULL,'%%sitename%% %%page%% %%sep%% %%sitedesc%%','Консалтингові та digital послуги','Home',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,'%%sitename%%','','','0',NULL,NULL,NULL,NULL,NULL,'2023-10-19 14:47:19','2025-09-23 08:27:11',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-09-23 11:27:10','2023-10-16 15:41:09',NULL),(5,'https://sgt.com.ua/category/uncategorized/','42:07a0afeacad75ff98df65a3befb344da',1,'term','category',NULL,NULL,NULL,NULL,'Uncategorized',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-10-19 15:07:23','2024-04-11 17:39:22',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-10-16 15:41:09','2023-10-16 15:41:09',NULL),(6,'https://sgt.com.ua/','19:95fae419a09f66c4fa87e5b28d3228c4',11,'post','page',1,0,NULL,NULL,'Цифоровізація бізнесу та консалтинг','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-10-19 15:07:24','2025-09-23 08:27:11',1,NULL,NULL,NULL,NULL,0,0,2,'2025-09-23 11:27:10','2023-10-19 15:07:24',0),(7,'https://sgt.com.ua/about/','25:ca745e5a40bfab43915962e571c5be1c',13,'post','page',1,0,NULL,NULL,'Контакти','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-10-19 15:07:43','2025-02-27 13:30:15',1,NULL,NULL,NULL,NULL,0,0,2,'2025-02-27 15:30:14','2023-10-19 15:07:43',0),(8,'https://sgt.com.ua/?p=1','23:546ddbcfcafb825d563a0ca1ba07a406',1,'post','post',1,0,NULL,NULL,'Hello world!','draft',0,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-10-19 16:32:13','2025-09-10 08:34:34',1,NULL,NULL,NULL,NULL,0,1,2,'2025-09-10 11:34:34','2023-10-16 15:41:09',0),(9,NULL,NULL,NULL,'system-page','404',NULL,NULL,'Page not found %%sep%% %%sitename%%',NULL,'Error 404: Page not found',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-10-19 16:32:13','2024-04-11 13:13:17',1,NULL,NULL,NULL,NULL,0,NULL,1,NULL,NULL,NULL),(10,NULL,NULL,NULL,'system-page','search-result',NULL,NULL,'You searched for %%searchphrase%% %%page%% %%sep%% %%sitename%%',NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-10-19 16:32:13','2024-04-11 17:39:22',1,NULL,NULL,NULL,NULL,0,NULL,1,NULL,NULL,NULL),(11,NULL,NULL,NULL,'date-archive',NULL,NULL,NULL,'%%date%% %%page%% %%sep%% %%sitename%%','',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-10-19 16:32:13','2024-04-11 17:39:22',1,NULL,NULL,NULL,NULL,0,NULL,1,NULL,NULL,NULL);
/*!40000 ALTER TABLE `wp6k_yoast_indexable` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp6k_yoast_indexable_hierarchy`
--
DROP TABLE IF EXISTS `wp6k_yoast_indexable_hierarchy`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp6k_yoast_indexable_hierarchy` (
`indexable_id` int(11) unsigned NOT NULL,
`ancestor_id` int(11) unsigned NOT NULL,
`depth` int(11) unsigned DEFAULT NULL,
`blog_id` bigint(20) NOT NULL DEFAULT 1,
PRIMARY KEY (`indexable_id`,`ancestor_id`),
KEY `indexable_id` (`indexable_id`),
KEY `ancestor_id` (`ancestor_id`),
KEY `depth` (`depth`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp6k_yoast_indexable_hierarchy`
--
LOCK TABLES `wp6k_yoast_indexable_hierarchy` WRITE;
/*!40000 ALTER TABLE `wp6k_yoast_indexable_hierarchy` DISABLE KEYS */;
INSERT INTO `wp6k_yoast_indexable_hierarchy` VALUES (1,0,0,1),(5,0,0,1),(6,0,0,1),(7,0,0,1),(8,0,0,1),(10,0,0,1);
/*!40000 ALTER TABLE `wp6k_yoast_indexable_hierarchy` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp6k_yoast_migrations`
--
DROP TABLE IF EXISTS `wp6k_yoast_migrations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp6k_yoast_migrations` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`version` varchar(191) DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `wp6k_yoast_migrations_version` (`version`)
) ENGINE=MyISAM AUTO_INCREMENT=27 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp6k_yoast_migrations`
--
LOCK TABLES `wp6k_yoast_migrations` WRITE;
/*!40000 ALTER TABLE `wp6k_yoast_migrations` DISABLE KEYS */;
INSERT INTO `wp6k_yoast_migrations` VALUES (1,'20171228151840'),(2,'20171228151841'),(3,'20190529075038'),(4,'20191011111109'),(5,'20200408101900'),(6,'20200420073606'),(7,'20200428123747'),(8,'20200428194858'),(9,'20200429105310'),(10,'20200430075614'),(11,'20200430150130'),(12,'20200507054848'),(13,'20200513133401'),(14,'20200609154515'),(15,'20200616130143'),(16,'20200617122511'),(17,'20200702141921'),(18,'20200728095334'),(19,'20201202144329'),(20,'20201216124002'),(21,'20201216141134'),(22,'20210817092415'),(23,'20211020091404'),(24,'20230417083836'),(25,'20190715101200'),(26,'20210827093024');
/*!40000 ALTER TABLE `wp6k_yoast_migrations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp6k_yoast_primary_term`
--
DROP TABLE IF EXISTS `wp6k_yoast_primary_term`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp6k_yoast_primary_term` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`post_id` bigint(20) DEFAULT NULL,
`term_id` bigint(20) DEFAULT NULL,
`taxonomy` varchar(32) NOT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
`blog_id` bigint(20) NOT NULL DEFAULT 1,
PRIMARY KEY (`id`),
KEY `post_taxonomy` (`post_id`,`taxonomy`),
KEY `post_term` (`post_id`,`term_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp6k_yoast_primary_term`
--
LOCK TABLES `wp6k_yoast_primary_term` WRITE;
/*!40000 ALTER TABLE `wp6k_yoast_primary_term` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp6k_yoast_primary_term` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp6k_yoast_prominent_words`
--
DROP TABLE IF EXISTS `wp6k_yoast_prominent_words`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp6k_yoast_prominent_words` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`stem` varchar(191) DEFAULT NULL,
`indexable_id` int(11) unsigned DEFAULT NULL,
`weight` float DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `stem` (`stem`),
KEY `indexable_id` (`indexable_id`),
KEY `indexable_id_and_stem` (`indexable_id`,`stem`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp6k_yoast_prominent_words`
--
LOCK TABLES `wp6k_yoast_prominent_words` WRITE;
/*!40000 ALTER TABLE `wp6k_yoast_prominent_words` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp6k_yoast_prominent_words` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp6k_yoast_seo_links`
--
DROP TABLE IF EXISTS `wp6k_yoast_seo_links`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp6k_yoast_seo_links` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`url` varchar(255) DEFAULT NULL,
`post_id` bigint(20) unsigned DEFAULT NULL,
`target_post_id` bigint(20) unsigned DEFAULT NULL,
`type` varchar(8) DEFAULT NULL,
`indexable_id` int(11) unsigned DEFAULT NULL,
`target_indexable_id` int(11) unsigned DEFAULT NULL,
`height` int(11) unsigned DEFAULT NULL,
`width` int(11) unsigned DEFAULT NULL,
`size` int(11) unsigned DEFAULT NULL,
`language` varchar(32) DEFAULT NULL,
`region` varchar(32) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `link_direction` (`post_id`,`type`),
KEY `indexable_link_direction` (`indexable_id`,`type`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp6k_yoast_seo_links`
--
LOCK TABLES `wp6k_yoast_seo_links` WRITE;
/*!40000 ALTER TABLE `wp6k_yoast_seo_links` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp6k_yoast_seo_links` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2026-03-30 19:59:56